summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2013-07-17 11:54:28 +0200
committerBram Moolenaar <Bram@vim.org>2013-07-17 11:54:28 +0200
commit56667a5d3ed3a45f06c8b7e6485eb6ab742a7302 (patch)
treef2e9be0faf7d6bc8f330c39274c2f9b312bcd086
parent6f2926692b12b2b06ae97336462058808bfdc6c0 (diff)
downloadvim-git-56667a5d3ed3a45f06c8b7e6485eb6ab742a7302.tar.gz
updated for version 7.4a.025v7.4a.025
Problem: Get the press-Enter prompt even after using :redraw. Solution: Clear need_wait_return when executing :redraw.
-rw-r--r--src/ex_docmd.c3
-rw-r--r--src/version.c2
2 files changed, 5 insertions, 0 deletions
diff --git a/src/ex_docmd.c b/src/ex_docmd.c
index 37e46fc46..1fead3948 100644
--- a/src/ex_docmd.c
+++ b/src/ex_docmd.c
@@ -8981,6 +8981,9 @@ ex_redraw(eap)
msg_didout = FALSE;
msg_col = 0;
+ /* No need to wait after an intentional redraw. */
+ need_wait_return = FALSE;
+
out_flush();
}
diff --git a/src/version.c b/src/version.c
index d8c9cc271..558649b82 100644
--- a/src/version.c
+++ b/src/version.c
@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 25,
+/**/
24,
/**/
23,