summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2017-11-13 22:08:16 +0100
committerBram Moolenaar <Bram@vim.org>2017-11-13 22:08:16 +0100
commit23921432369e210029a26864cfb4f1537b3c3395 (patch)
treeea079bbf5faf6f291954f8b52c383d77790a76a4
parent1dcada1933acdab93ac423951b5958125343833d (diff)
patch 8.0.1297: +autoservername does not show enabled on MS-Windowsv8.0.1297
Problem: +autoservername does not show enabled on MS-Windows. Solution: Always define the flag on MS-Windows. (Ken Takata)
-rw-r--r--src/feature.h6
-rw-r--r--src/version.c2
2 files changed, 8 insertions, 0 deletions
diff --git a/src/feature.h b/src/feature.h
index d100d6b31b..a6a1599977 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 6590bf60c5..c4e5d3528d 100644
--- a/src/version.c
+++ b/src/version.c
@@ -767,6 +767,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1297,
+/**/
1296,
/**/
1295,