]> granicus.if.org Git - vim/commitdiff
updated for version 7.3.246 v7.3.246
authorBram Moolenaar <Bram@vim.org>
Fri, 15 Jul 2011 11:21:30 +0000 (13:21 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 15 Jul 2011 11:21:30 +0000 (13:21 +0200)
Problem:    Repeating "f4" in "4444" skips one 4.
Solution:   Check the t_cmd flag. (Christian Brabandt)

src/search.c
src/version.c

index 6c9e1dae9183b253ceb57a1472c1c4ac6b900f4a..0d0d26d810a59a3eab42d38fb783ef5e02aefdc7 100644 (file)
@@ -1585,7 +1585,7 @@ searchc(cap, t_cmd)
        /* Force a move of at least one char, so ";" and "," will move the
         * cursor, even if the cursor is right in front of char we are looking
         * at. */
-       if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1)
+       if (vim_strchr(p_cpo, CPO_SCOLON) == NULL && count == 1 && t_cmd)
            stop = FALSE;
     }
 
index 77d3dc0eb7c36400f28c61ecbfec59226205b0af..2f4e229d83931582303608e5d899dde2b20dd8eb 100644 (file)
@@ -709,6 +709,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    246,
 /**/
     245,
 /**/