1 parent be0a259 commit 68cbb14Copy full SHA for 68cbb14
2 files changed
src/gui.c
@@ -69,7 +69,7 @@ gui_start(char_u *arg UNUSED)
69
{
70
char_u *old_term;
71
static int recursive = 0;
72
-#ifdef GUI_MAY_SPAWN
+#if defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)
73
char *msg = NULL;
74
#endif
75
@@ -113,7 +113,10 @@ gui_start(char_u *arg UNUSED)
113
# endif
114
)
115
116
- msg = gui_mch_do_spawn(arg);
+# ifdef EXPERIMENTAL_GUI_CMD
117
+ msg =
118
+# endif
119
+ gui_mch_do_spawn(arg);
120
}
121
else
122
src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
767
768
static int included_patches[] =
769
{ /* Add new patch number below this line */
770
+/**/
771
+ 1304,
772
/**/
773
1303,
774
0 commit comments