patch 8.2.1992: build fails with small features
Problem: Build fails with small features.
Solution: Add #ifdef.
diff --git a/src/move.c b/src/move.c
index 0a98f03..cd90379 100644
--- a/src/move.c
+++ b/src/move.c
@@ -868,7 +868,9 @@
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 4f03b26..0d9cf70 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1992,
+/**/
1991,
/**/
1990,