summaryrefslogtreecommitdiffstats
path: root/src/gui.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-10 21:28:44 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-10 21:28:44 +0200
commit717e196060d946fe20bb0f0307f417dc4d0e9b17 (patch)
treebd393aae467478792beb337a9b333e02436981a5 /src/gui.c
parenta6b7a08ae04a3cd4d9c45c906bb7a197e2135179 (diff)
patch 7.4.2193v7.4.2193
Problem: With Gnome when the GUI can't start test_startup hangs. Solution: Call gui_mch_early_init_check(). (Hirohito Higashi)
Diffstat (limited to 'src/gui.c')
-rw-r--r--src/gui.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui.c b/src/gui.c
index 88b5d7bf9f..0d858ec5b1 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -447,7 +447,7 @@ gui_init_check(void)
* See gui_do_fork().
* Use a simpler check if the GUI window can probably be opened.
*/
- result = gui.dofork ? gui_mch_early_init_check() : gui_mch_init_check();
+ result = gui.dofork ? gui_mch_early_init_check(TRUE) : gui_mch_init_check();
# else
result = gui_mch_init_check();
# endif