]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
updated for version 7.3.575 v7.3.575
authorBram Moolenaar <Bram@vim.org>
Fri, 29 Jun 2012 11:56:06 +0000 (13:56 +0200)
committerBram Moolenaar <Bram@vim.org>
Fri, 29 Jun 2012 11:56:06 +0000 (13:56 +0200)
Problem:    "ygt" tries to yank instead of giving an error. (Daniel Mueller)
Solution:   Check for a pending operator.

src/normal.c
src/version.c

index 6688a9da8b057f39868f09ccc5d4bfcb9b9e47be..8134adb2d50e2f789191439ac5f9efda0572df4b 100644 (file)
@@ -8393,10 +8393,12 @@ nv_g_cmd(cap)
 
 #ifdef FEAT_WINDOWS
     case 't':
-       goto_tabpage((int)cap->count0);
+       if (!checkclearop(oap))
+           goto_tabpage((int)cap->count0);
        break;
     case 'T':
-       goto_tabpage(-(int)cap->count1);
+       if (!checkclearop(oap))
+           goto_tabpage(-(int)cap->count1);
        break;
 #endif
 
index e798a87d8228246a75f775c5086f483316d6174a..33f03e062bd45cb68c789c84f873f776c239a476 100644 (file)
@@ -714,6 +714,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    575,
 /**/
     574,
 /**/