changeset 18215:86a865a89661 v8.1.2102

patch 8.1.2102: can't build with GTK and FEAT_GUI_GNOME Commit: https://github.com/vim/vim/commit/d17a57a43330977b8f4eb36f1f7a4a66a7bb26c8 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Sep 29 20:53:55 2019 +0200 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)
author Bram Moolenaar <Bram@vim.org>
date Sun, 29 Sep 2019 21:00:04 +0200
parents 9dc510e9e6e7
children e485ef959f1d
files src/session.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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)
 /*
--- a/src/version.c
+++ b/src/version.c
@@ -754,6 +754,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2102,
+/**/
     2101,
 /**/
     2100,