From 89f940fcacf0b0996c05537034b37b8c6bb87cf5 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 29 Jun 2012 13:56:06 +0200 Subject: updated for version 7.3.575 Problem: "ygt" tries to yank instead of giving an error. (Daniel Mueller) Solution: Check for a pending operator. --- src/normal.c | 6 ++++-- src/version.c | 2 ++ 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/normal.c b/src/normal.c index 6688a9da8..8134adb2d 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 e798a87d8..33f03e062 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, /**/ -- cgit v1.2.1