summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-11-28 21:33:36 +0000
committerBram Moolenaar <Bram@vim.org>2021-11-28 21:33:36 +0000
commitf566666e888685b6442a0e7f34c73ba56f6db49a (patch)
treea56d32718c52d1f0798f6038e8ad1086eba16567 /src/gui.c
parent06bffe836c98a65d270579f08004503ffce9931c (diff)
patch 8.2.3691: build failure with small featuresv8.2.3691
Problem: Build failure with small features. Solution: Add #ifdef. (Dominique Pellé)
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c2
1 files changed, 2 insertions, 0 deletions
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;