summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2020-11-15 21:11:18 +0100
committerBram Moolenaar <Bram@vim.org>2020-11-15 21:11:18 +0100
commit4792a679f9e08fc6026a596be3d364cecb70b049 (patch)
tree9eddaa62d11a1624927c805c06f3bbad9e226b0b
parentca359cbedd0d603124776e7a6ca0ae79ffc34cdc (diff)
downloadvim-git-4792a679f9e08fc6026a596be3d364cecb70b049.tar.gz
patch 8.2.1992: build fails with small featuresv8.2.1992
Problem: Build fails with small features. Solution: Add #ifdef.
-rw-r--r--src/move.c2
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 0 deletions
diff --git a/src/move.c b/src/move.c
index 0a98f0347..cd903793e 100644
--- a/src/move.c
+++ b/src/move.c
@@ -868,7 +868,9 @@ validate_cursor_col(void)
curwin->w_wcol = col;
curwin->w_valid |= VALID_WCOL;
+#ifdef FEAT_PROP_POPUP
curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
+#endif
}
}
diff --git a/src/version.c b/src/version.c
index 4f03b2627..0d9cf7007 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1992,
+/**/
1991,
/**/
1990,