# HG changeset patch # User Bram Moolenaar # Date 1638135905 -3600 # Node ID a74dd2014b04e9a06076709aea4b30b8eb915ef2 # Parent f78e7a6a6f5e574361c710aa5ee20d7949ff2d87 patch 8.2.3691: build failure with small features Commit: https://github.com/vim/vim/commit/f566666e888685b6442a0e7f34c73ba56f6db49a Author: Bram Moolenaar Date: Sun Nov 28 21:33:36 2021 +0000 patch 8.2.3691: build failure with small features Problem: Build failure with small features. Solution: Add #ifdef. (Dominique Pell?) diff --git a/src/gui.c b/src/gui.c --- a/src/gui.c +++ b/src/gui.c @@ -4413,8 +4413,10 @@ gui_update_scrollbars( } } +#ifdef FEAT_TITLE // update the title, it may show the scroll position maketitle(); +#endif prev_curwin = curwin; --hold_gui_events; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3691, +/**/ 3690, /**/ 3689,