FWIW, here is the patch I had meant to send. The same changes but with 6 lines of context rather than 8.
-- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
# HG changeset patch # User Tony Mechelynck <[email protected]> # Parent dc8ef890d0f01c5cca0a6564f9a4ea61a8035210 move +xpm into sequence in output of :version diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -721,12 +721,25 @@ static char *(features[]) = #endif #ifdef FEAT_XIM "+xim", #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", # else # ifdef USE_XSMP "+xsmp", @@ -742,25 +755,12 @@ static char *(features[]) = #endif #ifdef FEAT_XTERM_SAVE "+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 */ /**/
