commit | a8596c47724b97822924f5ffe5d50476de31ff4b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Wed Jun 13 14:28:20 2012 +0200 |
committer | Bram Moolenaar <Bram@vim.org> | Wed Jun 13 14:28:20 2012 +0200 |
tree | 77bfb95357a498955a7e8b2c8662b5a1b5b76c0d | |
parent | e04a48f20413f3f926d26394fad6431795348af7 [diff] [blame] |
updated for version 7.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)
diff --git a/src/fileio.c b/src/fileio.c index 0781424..d88ff25 100644 --- a/src/fileio.c +++ b/src/fileio.c
@@ -8918,7 +8918,7 @@ if (wp == aucmd_win) { if (tp != curtab) - goto_tabpage_tp(tp); + goto_tabpage_tp(tp, TRUE); win_goto(aucmd_win); goto win_found; }