From 4792a679f9e08fc6026a596be3d364cecb70b049 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 15 Nov 2020 21:11:18 +0100 Subject: [PATCH] patch 8.2.1992: build fails with small features Problem: Build fails with small features. Solution: Add #ifdef. --- src/move.c | 2 ++ src/version.c | 2 ++ 2 files changed, 4 insertions(+) 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, /**/ -- 2.50.1