# HG changeset patch # User Bram Moolenaar # Date 1566057603 -7200 # Node ID 6e11a5cb1533c649e952942428e3711e0879d160 # Parent ac9f5d3ac69312059ab54f9882ee47fe0cbbe77e patch 8.1.1873: cannot build tiny version commit https://github.com/vim/vim/commit/df707755554ecc102a908e8d5b64f2903f4f3686 Author: Bram Moolenaar Date: Sat Aug 17 17:50:07 2019 +0200 patch 8.1.1873: cannot build tiny version Problem: Cannot build tiny version. Solution: Remove #ifdef for is_autocmd_blocked(). diff --git a/src/autocmd.c b/src/autocmd.c --- 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 --- 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,