diff options
author | Bram Moolenaar <Bram@vim.org> | 2012-05-18 17:03:18 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2012-05-18 17:03:18 +0200 |
commit | 2969570036e154c440cab5a4f8a2cead22587dd9 (patch) | |
tree | 6096b9f46418d91be78c13785198bda9a64aa1de /src/proto/gui_gtk_x11.pro | |
parent | 8a4c136a90574ae1800fd088818f0e3bceaa9f21 (diff) | |
download | vim-git-2969570036e154c440cab5a4f8a2cead22587dd9.tar.gz |
updated for version 7.3.520v7.3.520
Problem: Gvim starts up slow on Unbuntu 12.04.
Solution: Move the call to gui_mch_init_check() to after fork(). (Yasuhiro
Matsumoto) Do check $DISPLAY being set.
Diffstat (limited to 'src/proto/gui_gtk_x11.pro')
-rw-r--r-- | src/proto/gui_gtk_x11.pro | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/proto/gui_gtk_x11.pro b/src/proto/gui_gtk_x11.pro index e395a0cfe..56a779b49 100644 --- a/src/proto/gui_gtk_x11.pro +++ b/src/proto/gui_gtk_x11.pro @@ -4,6 +4,7 @@ void gui_mch_free_all __ARGS((void)); void gui_mch_set_blinking __ARGS((long waittime, long on, long off)); void gui_mch_stop_blink __ARGS((void)); void gui_mch_start_blink __ARGS((void)); +int gui_mch_early_init_check __ARGS((void)); int gui_mch_init_check __ARGS((void)); void gui_mch_show_tabline __ARGS((int showit)); int gui_mch_showing_tabline __ARGS((void)); |