mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
updated for version 7.3.530
Problem: Gvim does not work when 'guioptions' includes "f". (Davido) Solution: Call gui_mch_init_check() when running GUI in the foreground. (Yasuhiro Matsumoto)
This commit is contained in:
@@ -102,6 +102,10 @@ gui_start()
|
||||
else
|
||||
#endif
|
||||
{
|
||||
/* If there is 'f' in 'guioptions' and specify -g argument,
|
||||
* gui_mch_init_check() was not called yet. */
|
||||
if (gui_mch_init_check() != OK)
|
||||
exit(1);
|
||||
gui_attempt_start();
|
||||
}
|
||||
|
||||
|
@@ -714,6 +714,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
530,
|
||||
/**/
|
||||
529,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user