mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 7.4.1402
Problem: GTK 3 is not supported. Solution: Add GTK 3 support. (Kazunobu Kuriyama)
This commit is contained in:
@@ -748,6 +748,8 @@ static char *(features[]) =
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
1402,
|
||||
/**/
|
||||
1401,
|
||||
/**/
|
||||
@@ -3824,11 +3826,15 @@ list_version(void)
|
||||
MSG_PUTS(_("without GUI."));
|
||||
#else
|
||||
# ifdef FEAT_GUI_GTK
|
||||
# ifdef FEAT_GUI_GNOME
|
||||
MSG_PUTS(_("with GTK2-GNOME GUI."));
|
||||
# ifdef USE_GTK3
|
||||
MSG_PUTS(_("with GTK3 GUI."));
|
||||
# else
|
||||
MSG_PUTS(_("with GTK2 GUI."));
|
||||
# endif
|
||||
# ifdef FEAT_GUI_GNOME
|
||||
MSG_PUTS(_("with GTK2-GNOME GUI."));
|
||||
# else
|
||||
MSG_PUTS(_("with GTK2 GUI."));
|
||||
# endif
|
||||
# endif
|
||||
# else
|
||||
# ifdef FEAT_GUI_MOTIF
|
||||
MSG_PUTS(_("with X11-Motif GUI."));
|
||||
|
Reference in New Issue
Block a user