0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.0-216

This commit is contained in:
Bram Moolenaar
2007-03-11 14:48:29 +00:00
parent 48c2c9a19a
commit d326ce83d5
5 changed files with 12 additions and 2 deletions

View File

@@ -7980,8 +7980,10 @@ ex_wincmd(eap)
{
/* Pass flags on for ":vertical wincmd ]". */
postponed_split_flags = cmdmod.split;
postponed_split_tab = cmdmod.tab;
do_window(*eap->arg, eap->addr_count > 0 ? eap->line2 : 0L, xchar);
postponed_split_flags = 0;
postponed_split_tab = 0;
}
}
#endif
@@ -9189,8 +9191,10 @@ ex_stag(eap)
{
postponed_split = -1;
postponed_split_flags = cmdmod.split;
postponed_split_tab = cmdmod.tab;
ex_tag_cmd(eap, cmdnames[eap->cmdidx].cmd_name + 1);
postponed_split_flags = 0;
postponed_split_tab = 0;
}
#endif