# HG changeset patch # User Bram Moolenaar # Date 1325684137 -3600 # Node ID 819322e0e93e50c04fa79163f9b88085cbe7db8d # Parent 47fa0af29c5a1a48c9787c5fa74e935111d29b5f updated for version 7.3.391 Problem: Can't check if the XPM_W32 feature is enabled. Solution: Add xpm_w32 to the list of features. (kat) diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -12260,6 +12260,9 @@ f_has(argvars, rettv) #ifdef FEAT_XFONTSET "xfontset", #endif +#ifdef FEAT_XPM_W32 + "xpm_w32", +#endif #ifdef USE_XSMP "xsmp", #endif diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -715,6 +715,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 391, +/**/ 390, /**/ 389,