diff options
author | Bram Moolenaar <Bram@vim.org> | 2010-08-06 20:42:30 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2010-08-06 20:42:30 +0200 |
commit | 97cfe90de865e2b4bb7839dc6cdf7dbb4125c8cc (patch) | |
tree | b67934bd5e3711de042f1f116e6d7ad2e0785002 | |
parent | e90ee31c40e9056f276eb34ab967b30117b222d7 (diff) | |
download | vim-97cfe90de865e2b4bb7839dc6cdf7dbb4125c8cc.zip |
Call gui_mch_update() before triggering GuiEnter autocmd. (Ron Aaron)
-rw-r--r-- | src/gui.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -190,6 +190,7 @@ gui_start() #ifdef FEAT_AUTOCMD /* If the GUI started successfully, trigger the GUIEnter event, otherwise * the GUIFailed event. */ + gui_mch_update(); apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED, NULL, NULL, FALSE, curbuf); #endif |