comparison src/getchar.c @ 12477:68d7bc045dbe v8.0.1118

patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs commit https://github.com/vim/vim/commit/4033c55eca575777718c0701e26635a0cc47d907 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Sep 16 20:54:51 2017 +0200 patch 8.0.1118: FEAT_WINDOWS adds a lot of #ifdefs Problem: FEAT_WINDOWS adds a lot of #ifdefs while it is nearly always enabled and only adds 7% to the binary size of the tiny build. Solution: Graduate FEAT_WINDOWS.
author Christian Brabandt <cb@256bit.org>
date Sat, 16 Sep 2017 21:00:06 +0200
parents dfb8254aa735
children 972ea22c946f
comparison
equal deleted inserted replaced
12476:2516383741e6 12477:68d7bc045dbe
2288 { 2288 {
2289 msg_col = 0; 2289 msg_col = 0;
2290 msg_row = Rows - 1; 2290 msg_row = Rows - 1;
2291 msg_clr_eos(); /* clear ruler */ 2291 msg_clr_eos(); /* clear ruler */
2292 } 2292 }
2293 #ifdef FEAT_WINDOWS
2294 status_redraw_all(); 2293 status_redraw_all();
2295 redraw_statuslines(); 2294 redraw_statuslines();
2296 #endif
2297 showmode(); 2295 showmode();
2298 setcursor(); 2296 setcursor();
2299 continue; 2297 continue;
2300 } 2298 }
2301 /* Need more chars for partly match. */ 2299 /* Need more chars for partly match. */