From: Bram Moolenaar Date: Sun, 29 Sep 2019 18:53:55 +0000 (+0200) Subject: patch 8.1.2102: can't build with GTK and FEAT_GUI_GNOME X-Git-Tag: v8.1.2102 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d17a57a43330977b8f4eb36f1f7a4a66a7bb26c8;p=vim patch 8.1.2102: can't build with GTK and FEAT_GUI_GNOME Problem: Can't build with GTK and FEAT_GUI_GNOME. (Tony Mechelynck) Solution: Adjust the #ifdef. (Yegappan Lakshmanan) --- diff --git a/src/session.c b/src/session.c index 41835db26..418fcba57 100644 --- a/src/session.c +++ b/src/session.c @@ -985,7 +985,7 @@ ex_loadview(exarg_T *eap) } } -# if defined(USE_GNOME_SESSION) \ +# if defined(FEAT_GUI_GNOME) \ || (defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)) \ || defined(PROTO) /* diff --git a/src/version.c b/src/version.c index 8feb2cc72..f5b9d6075 100644 --- a/src/version.c +++ b/src/version.c @@ -753,6 +753,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2102, /**/ 2101, /**/