summaryrefslogtreecommitdiff
path: root/src/fileio.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/fileio.c
parente04a48f20413f3f926d26394fad6431795348af7 (diff)
downloadvim-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/fileio.c')
-rw-r--r--src/fileio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fileio.c b/src/fileio.c
index 078142468..d88ff25f6 100644
--- a/src/fileio.c
+++ b/src/fileio.c
@@ -8918,7 +8918,7 @@ aucmd_restbuf(aco)
if (wp == aucmd_win)
{
if (tp != curtab)
- goto_tabpage_tp(tp);
+ goto_tabpage_tp(tp, TRUE);
win_goto(aucmd_win);
goto win_found;
}