diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-02-15 16:17:07 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-02-15 16:17:07 +0100 |
commit | 06811f33ce34575e32f890f8b70c675d44858821 (patch) | |
tree | 9da0feca2ce13eb0f50e0e4a39ed96551e193229 | |
parent | 403b3cf0a1ee4c7c1862ef52d42713b90c75a5ee (diff) | |
download | vim-git-06811f33ce34575e32f890f8b70c675d44858821.tar.gz |
updated for version 7.4.181v7.4.181
Problem: When using 'pastetoggle' the status lines are not updated. (Samuel
Ferencik, Jan Christoph Ebersbach)
Solution: Update the status lines. (Nobuhiro Takasaki)
-rw-r--r-- | src/getchar.c | 6 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/getchar.c b/src/getchar.c index 8ddaa398b..cc30f9412 100644 --- 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 index 9036cf7b2..f0b916d75 100644 --- 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, |