diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-06-13 14:28:20 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-06-13 14:28:20 +0200 |
commit | a8596c47724b97822924f5ffe5d50476de31ff4b (patch) | |
tree | 77bfb95357a498955a7e8b2c8662b5a1b5b76c0d /src/ex_cmds2.c | |
parent | e04a48f20413f3f926d26394fad6431795348af7 (diff) | |
download | vim-git-a8596c47724b97822924f5ffe5d50476de31ff4b.tar.gz |
updated for version 7.3.551v7.3.551
Problem: When using :tablose a TabEnter autocommand is triggered too early.
(Karthick)
Solution: Don't trigger *Enter autocommands before closing the tab.
(Christian Brabandt)
Diffstat (limited to 'src/ex_cmds2.c')
-rw-r--r-- | src/ex_cmds2.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c index 611a36339..6b12c4245 100644 --- a/src/ex_cmds2.c +++ b/src/ex_cmds2.c @@ -2476,7 +2476,7 @@ ex_listdo(eap) /* go to window "tp" */ if (!valid_tabpage(tp)) break; - goto_tabpage_tp(tp); + goto_tabpage_tp(tp, TRUE); tp = tp->tp_next; } #endif |