summaryrefslogtreecommitdiff
path: root/src/proto/window.pro
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/proto/window.pro
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/proto/window.pro')
-rw-r--r--src/proto/window.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/window.pro b/src/proto/window.pro
index d56ae1b33..847b64bb5 100644
--- a/src/proto/window.pro
+++ b/src/proto/window.pro
@@ -27,7 +27,7 @@ int valid_tabpage __ARGS((tabpage_T *tpc));
tabpage_T *find_tabpage __ARGS((int n));
int tabpage_index __ARGS((tabpage_T *ftp));
void goto_tabpage __ARGS((int n));
-void goto_tabpage_tp __ARGS((tabpage_T *tp));
+void goto_tabpage_tp __ARGS((tabpage_T *tp, int trigger_autocmds));
void goto_tabpage_win __ARGS((tabpage_T *tp, win_T *wp));
void tabpage_move __ARGS((int nr));
void win_goto __ARGS((win_T *wp));