0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

updated for version 7.0-072

This commit is contained in:
Bram Moolenaar
2006-08-29 16:13:22 +00:00
parent 9160f30161
commit 265e5074b5
4 changed files with 8 additions and 3 deletions

View File

@@ -187,9 +187,10 @@ gui_start()
#endif
#ifdef FEAT_AUTOCMD
/* If the GUI started successfully, trigger the GUIEnter event */
if (gui.in_use)
apply_autocmds(EVENT_GUIENTER, NULL, NULL, FALSE, curbuf);
/* If the GUI started successfully, trigger the GUIEnter event, otherwise
* the GUIFailed event. */
apply_autocmds(gui.in_use ? EVENT_GUIENTER : EVENT_GUIFAILED,
NULL, NULL, FALSE, curbuf);
#endif
--recursive;