summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/normal.c6
-rw-r--r--src/version.c2
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
@@ -715,6 +715,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 575,
+/**/
574,
/**/
573,