0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

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)
This commit is contained in:
Bram Moolenaar
2017-11-13 22:08:16 +01:00
parent 1dcada1933
commit 2392143236
2 changed files with 8 additions and 0 deletions

View File

@@ -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
/*

View File

@@ -766,6 +766,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
1297,
/**/
1296,
/**/