From f566666e888685b6442a0e7f34c73ba56f6db49a Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Sun, 28 Nov 2021 21:33:36 +0000 Subject: patch 8.2.3691: build failure with small features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Problem: Build failure with small features. Solution: Add #ifdef. (Dominique Pellé) --- src/gui.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/gui.c') diff --git a/src/gui.c b/src/gui.c index 17f4e9506c..616f6022bd 100644 --- 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; -- cgit v1.2.3