summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-08-17 17:50:07 +0200
committerBram Moolenaar <Bram@vim.org>2019-08-17 17:50:07 +0200
commitdf707755554ecc102a908e8d5b64f2903f4f3686 (patch)
tree39c3f48499e4efa81daa115ab47616644bdab515
parentc7226684c82dde7eb6601e067ee2e9387e447903 (diff)
downloadvim-git-df707755554ecc102a908e8d5b64f2903f4f3686.tar.gz
patch 8.1.1873: cannot build tiny versionv8.1.1873
Problem: Cannot build tiny version. Solution: Remove #ifdef for is_autocmd_blocked().
-rw-r--r--src/autocmd.c3
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 3 deletions
diff --git a/src/autocmd.c b/src/autocmd.c
index 19b5deb71..7af5f56ff 100644
--- a/src/autocmd.c
+++ b/src/autocmd.c
@@ -2241,14 +2241,11 @@ unblock_autocmds(void)
# endif
}
-#if defined(FEAT_EVAL) && (defined(FEAT_XIM) || defined(IME_WITHOUT_XIM)) \
- || defined(PROTO)
int
is_autocmd_blocked(void)
{
return autocmd_blocked != 0;
}
-#endif
/*
* Find next autocommand pattern that matches.
diff --git a/src/version.c b/src/version.c
index 5d7da51ba..081e84ac7 100644
--- a/src/version.c
+++ b/src/version.c
@@ -770,6 +770,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1873,
+/**/
1872,
/**/
1871,