# HG changeset patch # User Christian Brabandt # Date 1471099505 -7200 # Node ID 649a6a3fa71494fbd0fcafb86591f1f0c046c21d # Parent 3b602e8d0cea35f73a509880a23b3d061d5c1535 commit https://github.com/vim/vim/commit/d58b0f982ad758c59abe47627216a15497e9c3c1 Author: Bram Moolenaar Date: Sat Aug 13 16:39:56 2016 +0200 patch 7.4.2207 Problem: The +xpm feature is not sorted properly in :version output. Solution: Move it up. (Tony Mechelynck) diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -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", @@ -745,25 +758,14 @@ static char *(features[]) = #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, /**/ 2205,