summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2006-07-23 19:51:57 +0000
committerBram Moolenaar <Bram@vim.org>2006-07-23 19:51:57 +0000
commit412f7444ea0eddc41b213705ec6731cea6297a1d (patch)
treec529d35dd90a3c5abdbd4463f84f8d304a4cd76f
parentecbaf5570ae86fe25f832d6c154e1b7400dab01b (diff)
downloadvim-git-412f7444ea0eddc41b213705ec6731cea6297a1d.tar.gz
updated for version 7.0-040v7.0.040
-rw-r--r--src/eval.c1
-rw-r--r--src/spell.c1
-rw-r--r--src/version.c2
3 files changed, 4 insertions, 0 deletions
diff --git a/src/eval.c b/src/eval.c
index a6b2553ef..3369789b3 100644
--- a/src/eval.c
+++ b/src/eval.c
@@ -11497,6 +11497,7 @@ f_inputlist(argvars, rettv)
}
msg_start();
+ msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
lines_left = Rows; /* avoid more prompt */
msg_scroll = TRUE;
msg_clr_eos();
diff --git a/src/spell.c b/src/spell.c
index c3bf5b0a2..8b6533649 100644
--- a/src/spell.c
+++ b/src/spell.c
@@ -10071,6 +10071,7 @@ spell_suggest(count)
/* List the suggestions. */
msg_start();
+ msg_row = Rows - 1; /* for when 'cmdheight' > 1 */
lines_left = Rows; /* avoid more prompt */
vim_snprintf((char *)IObuff, IOSIZE, _("Change \"%.*s\" to:"),
sug.su_badlen, sug.su_badptr);
diff --git a/src/version.c b/src/version.c
index 6c4c2fd65..038e4acd1 100644
--- a/src/version.c
+++ b/src/version.c
@@ -667,6 +667,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 40,
+/**/
39,
/**/
38,