changeset 16906:4dac68c4a34a v8.1.1454

patch 8.1.1454: build failure without the conceal feature commit https://github.com/vim/vim/commit/6116b6abb1a14b6b7aa9776c390f1a5a6bf1b209 Author: Bram Moolenaar <Bram@vim.org> 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.
author Bram Moolenaar <Bram@vim.org>
date Sun, 02 Jun 2019 19:15:05 +0200
parents 9c5fce4d3b07
children eaf7f6fefdb6
files src/autocmd.c src/version.c
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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.
--- 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,