comparison src/gui.c @ 26321:a74dd2014b04 v8.2.3691

patch 8.2.3691: build failure with small features Commit: https://github.com/vim/vim/commit/f566666e888685b6442a0e7f34c73ba56f6db49a Author: Bram Moolenaar <Bram@vim.org> 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?)
author Bram Moolenaar <Bram@vim.org>
date Sun, 28 Nov 2021 22:45:05 +0100
parents 39f841f187d5
children a2e6da79274d
comparison
equal deleted inserted replaced
26320:f78e7a6a6f5e 26321:a74dd2014b04
4411 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT], 4411 gui_mch_set_scrollbar_thumb(&wp->w_scrollbars[SBAR_RIGHT],
4412 val, size, max); 4412 val, size, max);
4413 } 4413 }
4414 } 4414 }
4415 4415
4416 #ifdef FEAT_TITLE
4416 // update the title, it may show the scroll position 4417 // update the title, it may show the scroll position
4417 maketitle(); 4418 maketitle();
4419 #endif
4418 4420
4419 prev_curwin = curwin; 4421 prev_curwin = curwin;
4420 --hold_gui_events; 4422 --hold_gui_events;
4421 } 4423 }
4422 4424