From: Bram Moolenaar Date: Mon, 13 Nov 2017 21:08:16 +0000 (+0100) Subject: patch 8.0.1297: +autoservername does not show enabled on MS-Windows X-Git-Tag: v8.0.1297 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=23921432369e210029a26864cfb4f1537b3c3395;p=vim patch 8.0.1297: +autoservername does not show enabled on MS-Windows Problem: +autoservername does not show enabled on MS-Windows. Solution: Always define the flag on MS-Windows. (Ken Takata) --- diff --git a/src/feature.h b/src/feature.h index d100d6b31..a6a159997 100644 --- a/src/feature.h +++ b/src/feature.h @@ -1172,7 +1172,13 @@ * when --servername is not passed on the command line. */ #if defined(FEAT_CLIENTSERVER) && !defined(FEAT_AUTOSERVERNAME) +# ifdef WIN3264 + /* Always enabled on MS-Windows. */ +# define FEAT_AUTOSERVERNAME +# else + /* Enable here if you don't use configure. */ /* # define FEAT_AUTOSERVERNAME */ +# endif #endif /* diff --git a/src/version.c b/src/version.c index 6590bf60c..c4e5d3528 100644 --- a/src/version.c +++ b/src/version.c @@ -766,6 +766,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 1297, /**/ 1296, /**/