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:
@@ -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;
|
||||
|
Reference in New Issue
Block a user