summaryrefslogtreecommitdiffstats
path: root/src/ex_cmds2.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-06-13 14:28:20 +0200
committerBram Moolenaar <Bram@vim.org>2012-06-13 14:28:20 +0200
commita8596c47724b97822924f5ffe5d50476de31ff4b (patch)
tree77bfb95357a498955a7e8b2c8662b5a1b5b76c0d /src/ex_cmds2.c
parente04a48f20413f3f926d26394fad6431795348af7 (diff)
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds2.c b/src/ex_cmds2.c
index 611a363392..6b12c4245a 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