commit | f566666e888685b6442a0e7f34c73ba56f6db49a | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sun Nov 28 21:33:36 2021 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sun Nov 28 21:33:36 2021 +0000 |
tree | a56d32718c52d1f0798f6038e8ad1086eba16567 | |
parent | 06bffe836c98a65d270579f08004503ffce9931c [diff] [blame] |
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 index 17f4e95..616f602 100644 --- a/src/gui.c +++ b/src/gui.c
@@ -4413,8 +4413,10 @@ } } +#ifdef FEAT_TITLE // update the title, it may show the scroll position maketitle(); +#endif prev_curwin = curwin; --hold_gui_events;