# HG changeset patch # User Bram Moolenaar # Date 1392477427 -3600 # Node ID cb5683bcde03796baa7e845fd9a2fcaec3383538 # Parent da993823405a065b34ad0aa6479597f116d19004 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) diff --git a/src/getchar.c b/src/getchar.c --- a/src/getchar.c +++ b/src/getchar.c @@ -406,7 +406,7 @@ read_readbuf(buf, advance) } /* - * Prepare the read buffers for reading (if they contains something). + * Prepare the read buffers for reading (if they contain something). */ static void start_stuff() @@ -2302,6 +2302,10 @@ vgetorpeek(advance) msg_row = Rows - 1; msg_clr_eos(); /* clear ruler */ } +#ifdef FEAT_WINDOWS + status_redraw_all(); + redraw_statuslines(); +#endif showmode(); setcursor(); continue; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -739,6 +739,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 181, +/**/ 180, /**/ 179,