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 97a9ea2380
commit 5cc4c38678
3 changed files with 4 additions and 3 deletions
+1 -2
View File
@@ -1,6 +1,6 @@
syntax: glob
# Unixen
# Unixen: object and executable files.
*.o
src/vim
src/xxd/xxd
@@ -18,7 +18,6 @@ src/auto/link.sed
src/auto/pathdef.c
# Windows
.hgignore
*.exe
*.idb
*.manifest
+1 -1
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
+2
View File
@@ -681,6 +681,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
328,
/**/
327,
/**/