# HG changeset patch # User Bram Moolenaar # Date 1559495705 -7200 # Node ID 4dac68c4a34a3d1814b5c4506ce611f64c6c2981 # Parent 9c5fce4d3b07527eef3cb54a7064b93ca5643683 patch 8.1.1454: build failure without the conceal feature commit https://github.com/vim/vim/commit/6116b6abb1a14b6b7aa9776c390f1a5a6bf1b209 Author: Bram Moolenaar Date: Sun Jun 2 19:02:27 2019 +0200 patch 8.1.1454: build failure without the conceal feature Problem: Build failure without the conceal feature. Solution: Remove #ifdef. diff --git a/src/autocmd.c b/src/autocmd.c --- a/src/autocmd.c +++ b/src/autocmd.c @@ -1709,7 +1709,6 @@ has_cursormoved(void) return (first_autopat[(int)EVENT_CURSORMOVED] != NULL); } -#if defined(FEAT_CONCEAL) || defined(PROTO) /* * Return TRUE when there is a CursorMovedI autocommand defined. */ @@ -1718,7 +1717,6 @@ has_cursormovedI(void) { return (first_autopat[(int)EVENT_CURSORMOVEDI] != NULL); } -#endif /* * Return TRUE when there is a TextChanged autocommand defined. diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -768,6 +768,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1454, +/**/ 1453, /**/ 1452,