0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

updated for version 7.2.328

Problem:    has("win64") does not return 1 on 64 bit MS-Windows version.
Solution:   Also check for _WIN64 besides WIN64.
This commit is contained in:
Bram Moolenaar
2010-01-12 13:18:33 +01:00
parent ef3c1a7fd7
commit e37d79928d
3 changed files with 4 additions and 3 deletions

View File

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