diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-13 22:08:16 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-13 22:08:16 +0100 |
commit | 23921432369e210029a26864cfb4f1537b3c3395 (patch) | |
tree | ea079bbf5faf6f291954f8b52c383d77790a76a4 /src/feature.h | |
parent | 1dcada1933acdab93ac423951b5958125343833d (diff) | |
download | vim-git-23921432369e210029a26864cfb4f1537b3c3395.tar.gz |
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)
Diffstat (limited to 'src/feature.h')
-rw-r--r-- | src/feature.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 /* |