summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2015-02-27 15:03:58 +0100
committerBram Moolenaar <Bram@vim.org>2015-02-27 15:03:58 +0100
commitdfd7691bb85b345bd86cf30945a66acf7c782920 (patch)
tree2f1061e419b9b4f36ca957bed9284c3700e01b1a /src
parentc3bbad085c3ec304b111dc95aed97fea4c38a177 (diff)
updated for version 7.4.641v7.4.641
Problem: The tabline menu was using ":999tabnew" which is now invalid. Solution: Use ":$tabnew" instead. (Florian Degner)
Diffstat (limited to 'src')
-rw-r--r--src/normal.c22
-rw-r--r--src/version.c2
2 files changed, 18 insertions, 6 deletions
diff --git a/src/normal.c b/src/normal.c
index 86d4504a91..987705d4c6 100644
--- a/src/normal.c
+++ b/src/normal.c
@@ -5302,15 +5302,25 @@ handle_tabmenu()
break;
case TABLINE_MENU_NEW:
- vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
- current_tab > 0 ? current_tab - 1 : 999);
- do_cmdline_cmd(IObuff);
+ if (current_tab == 0)
+ do_cmdline_cmd((char_u *)"$tabnew");
+ else
+ {
+ vim_snprintf((char *)IObuff, IOSIZE, "%dtabnew",
+ current_tab - 1);
+ do_cmdline_cmd(IObuff);
+ }
break;
case TABLINE_MENU_OPEN:
- vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
- current_tab > 0 ? current_tab - 1 : 999);
- do_cmdline_cmd(IObuff);
+ if (current_tab == 0)
+ do_cmdline_cmd((char_u *)"browse $tabnew");
+ else
+ {
+ vim_snprintf((char *)IObuff, IOSIZE, "browse %dtabnew",
+ current_tab - 1);
+ do_cmdline_cmd(IObuff);
+ }
break;
}
}
diff --git a/src/version.c b/src/version.c
index 3365c806ca..34c6959720 100644
--- a/src/version.c
+++ b/src/version.c
@@ -742,6 +742,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 641,
+/**/
640,
/**/
639,