0
0
mirror of https://github.com/vim/vim.git synced 2025-10-17 07:44:28 -04:00

patch 8.1.0951: using WIN64 even though it is never defined

Problem:    Using WIN64 even though it is never defined.
Solution:   Only use _WIN64. (Ken Takata, closes #3997)
This commit is contained in:
Bram Moolenaar
2019-02-18 22:14:18 +01:00
parent 14816ad6e5
commit 44b443c5db
2 changed files with 3 additions and 1 deletions

View File

@@ -6158,7 +6158,7 @@ f_has(typval_T *argvars, typval_T *rettv)
#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
"win32unix",
#endif
#if defined(WIN64) || defined(_WIN64)
#ifdef _WIN64
"win64",
#endif
#ifdef EBCDIC