]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.561 v7.3.561
authorBram Moolenaar <Bram@vim.org>
Wed, 20 Jun 2012 12:26:35 +0000 (14:26 +0200)
committerBram Moolenaar <Bram@vim.org>
Wed, 20 Jun 2012 12:26:35 +0000 (14:26 +0200)
Problem:    Using refresh: always in a complete function breaks the "."
            command. (Val Markovic)
Solution:   Add match leader to the redo buffer. (Yasuhiro Matsumoto)

src/edit.c
src/version.c

index 013fc5abcb7742995f5cb5ac47a36e4f832eaea8..2bcfc42a4a6334d5659c4232bbe2a4c6882a45d9 100644 (file)
@@ -3467,10 +3467,14 @@ ins_compl_addleader(c)
        (*mb_char2bytes)(c, buf);
        buf[cc] = NUL;
        ins_char_bytes(buf, cc);
+       AppendToRedobuff(buf);
     }
     else
 #endif
+    {
        ins_char(c);
+       AppendCharToRedobuff(c);
+    }
 
     /* If we didn't complete finding matches we must search again. */
     if (ins_compl_need_restart())
index 23049a807ec2453c35ddb7bca1848941b78031bb..93a8e8fffaf610f6300d23e4c0c75bb7ba825389 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    561,
 /**/
     560,
 /**/