mirror of
https://github.com/vim/vim.git
synced 2025-10-17 07:44:28 -04:00
patch 7.4.2207
Problem: The +xpm feature is not sorted properly in :version output. Solution: Move it up. (Tony Mechelynck)
This commit is contained in:
@@ -724,6 +724,19 @@ static char *(features[]) =
|
||||
#else
|
||||
"-xim",
|
||||
#endif
|
||||
#ifdef WIN3264
|
||||
# ifdef FEAT_XPM_W32
|
||||
"+xpm_w32",
|
||||
# else
|
||||
"-xpm_w32",
|
||||
# endif
|
||||
#else
|
||||
# ifdef HAVE_XPM
|
||||
"+xpm",
|
||||
# else
|
||||
"-xpm",
|
||||
# endif
|
||||
#endif
|
||||
#if defined(UNIX) || defined(VMS)
|
||||
# ifdef USE_XSMP_INTERACT
|
||||
"+xsmp_interact",
|
||||
@@ -744,25 +757,14 @@ static char *(features[]) =
|
||||
"+xterm_save",
|
||||
#else
|
||||
"-xterm_save",
|
||||
#endif
|
||||
#ifdef WIN3264
|
||||
# ifdef FEAT_XPM_W32
|
||||
"+xpm_w32",
|
||||
# else
|
||||
"-xpm_w32",
|
||||
# endif
|
||||
#else
|
||||
# ifdef HAVE_XPM
|
||||
"+xpm",
|
||||
# else
|
||||
"-xpm",
|
||||
# endif
|
||||
#endif
|
||||
NULL
|
||||
};
|
||||
|
||||
static int included_patches[] =
|
||||
{ /* Add new patch number below this line */
|
||||
/**/
|
||||
2207,
|
||||
/**/
|
||||
2206,
|
||||
/**/
|
||||
|
Reference in New Issue
Block a user