summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2014-09-09 18:29:33 +0200
committerBram Moolenaar <bram@vim.org>2014-09-09 18:29:33 +0200
commit88df8dc43a5c5cb7c0fc5a56e1fbdb3165e16d1d (patch)
tree85c15a470e3660f751ce1e429b9339f83266d9fa
parentdc3c0362d12a0e0f4b2126471d800056856c08f3 (diff)
downloadvim-88df8dc43a5c5cb7c0fc5a56e1fbdb3165e16d1d.tar.gz
updated for version 7.4.440v7.4.440v7-4-440
Problem: Omni complete popup drawn incorrectly. Solution: Call validate_cursor() instead of check_cursor(). (Hirohito Higashi)
-rw-r--r--src/edit.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/edit.c b/src/edit.c
index 7e5e29ee..8243890c 100644
--- a/src/edit.c
+++ b/src/edit.c
@@ -4035,7 +4035,7 @@ expand_by_function(type, base)
goto theend;
}
curwin->w_cursor = pos; /* restore the cursor position */
- check_cursor();
+ validate_cursor();
if (!equalpos(curwin->w_cursor, pos))
{
EMSG(_(e_compldel));
@@ -5273,7 +5273,7 @@ ins_complete(c)
return FAIL;
}
curwin->w_cursor = pos; /* restore the cursor position */
- check_cursor();
+ validate_cursor();
if (!equalpos(curwin->w_cursor, pos))
{
EMSG(_(e_compldel));
diff --git a/src/version.c b/src/version.c
index edc87f35..2a86184d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 440,
+/**/
439,
/**/
438,