]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.440 v7.4.440
authorBram Moolenaar <Bram@vim.org>
Tue, 9 Sep 2014 16:29:33 +0000 (18:29 +0200)
committerBram Moolenaar <Bram@vim.org>
Tue, 9 Sep 2014 16:29:33 +0000 (18:29 +0200)
Problem:    Omni complete popup drawn incorrectly.
Solution:   Call validate_cursor() instead of check_cursor(). (Hirohito
            Higashi)

src/edit.c
src/version.c

index 7e5e29ee91964397553261bfe5bdd15bfa6c2683..8243890c5294eed051c8d6a795b7b657505b8606 100644 (file)
@@ -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));
index edc87f354816973ff2c009b9df8d54f5b74982d5..2a86184d9ccd53c47f4bfdbd3e6418755af58485 100644 (file)
@@ -741,6 +741,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    440,
 /**/
     439,
 /**/