comparison src/getchar.c @ 5670:cb5683bcde03 v7.4.181

updated for version 7.4.181 Problem: When using 'pastetoggle' the status lines are not updated. (Samuel Ferencik, Jan Christoph Ebersbach) Solution: Update the status lines. (Nobuhiro Takasaki)
author Bram Moolenaar <bram@vim.org>
date Sat, 15 Feb 2014 16:17:07 +0100
parents beb037a6c270
children f5120cbf16b9
comparison
equal deleted inserted replaced
5669:da993823405a 5670:cb5683bcde03
404 } 404 }
405 return c; 405 return c;
406 } 406 }
407 407
408 /* 408 /*
409 * Prepare the read buffers for reading (if they contains something). 409 * Prepare the read buffers for reading (if they contain something).
410 */ 410 */
411 static void 411 static void
412 start_stuff() 412 start_stuff()
413 { 413 {
414 if (readbuf1.bh_first.b_next != NULL) 414 if (readbuf1.bh_first.b_next != NULL)
2300 { 2300 {
2301 msg_col = 0; 2301 msg_col = 0;
2302 msg_row = Rows - 1; 2302 msg_row = Rows - 1;
2303 msg_clr_eos(); /* clear ruler */ 2303 msg_clr_eos(); /* clear ruler */
2304 } 2304 }
2305 #ifdef FEAT_WINDOWS
2306 status_redraw_all();
2307 redraw_statuslines();
2308 #endif
2305 showmode(); 2309 showmode();
2306 setcursor(); 2310 setcursor();
2307 continue; 2311 continue;
2308 } 2312 }
2309 /* Need more chars for partly match. */ 2313 /* Need more chars for partly match. */