Skip to content

Commit d17a57a

Browse files
committed
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)
1 parent ac02a63 commit d17a57a

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

src/session.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -985,7 +985,7 @@ ex_loadview(exarg_T *eap)
985985
}
986986
}
987987

988-
# if defined(USE_GNOME_SESSION) \
988+
# if defined(FEAT_GUI_GNOME) \
989989
|| (defined(GUI_MAY_SPAWN) && defined(EXPERIMENTAL_GUI_CMD)) \
990990
|| defined(PROTO)
991991
/*

src/version.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -753,6 +753,8 @@ static char *(features[]) =
753753

754754
static int included_patches[] =
755755
{ /* Add new patch number below this line */
756+
/**/
757+
2102,
756758
/**/
757759
2101,
758760
/**/

0 commit comments

Comments
 (0)