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, /**/