From: Bram Moolenaar Date: Fri, 29 Jun 2012 11:56:06 +0000 (+0200) Subject: updated for version 7.3.575 X-Git-Tag: v7.3.575 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=89f940fcacf0b0996c05537034b37b8c6bb87cf5;p=thirdparty%2Fvim.git updated for version 7.3.575 Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator. --- diff --git a/src/normal.c b/src/normal.c index 6688a9da8b..8134adb2d5 100644 --- a/src/normal.c +++ b/src/normal.c @@ -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 diff --git a/src/version.c b/src/version.c index e798a87d82..33f03e062b 100644 --- a/src/version.c +++ b/src/version.c @@ -714,6 +714,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 575, /**/ 574, /**/