From: Bram Moolenaar Date: Sun, 15 Nov 2020 20:11:18 +0000 (+0100) Subject: patch 8.2.1992: build fails with small features X-Git-Tag: v8.2.1992 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4792a679f9e08fc6026a596be3d364cecb70b049;p=vim 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 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 @@ -750,6 +750,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1992, /**/ 1991, /**/