Skip to content

Commit 4792a67

Browse files
committed
patch 8.2.1992: build fails with small features
Problem: Build fails with small features. Solution: Add #ifdef.
1 parent ca359cb commit 4792a67

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

src/move.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -868,7 +868,9 @@ validate_cursor_col(void)
868868
curwin->w_wcol = col;
869869

870870
curwin->w_valid |= VALID_WCOL;
871+
#ifdef FEAT_PROP_POPUP
871872
curwin->w_flags &= ~WFLAG_WCOL_OFF_ADDED;
873+
#endif
872874
}
873875
}
874876

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,8 @@ static char *(features[]) =
750750

751751
static int included_patches[] =
752752
{ /* Add new patch number below this line */
753+
/**/
754+
1992,
753755
/**/
754756
1991,
755757
/**/

0 commit comments

Comments
 (0)