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:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,4 +1,4 @@
|
|||||||
# Unixen
|
# Unixen: object and executable files.
|
||||||
*.o
|
*.o
|
||||||
src/vim
|
src/vim
|
||||||
src/xxd/xxd
|
src/xxd/xxd
|
||||||
@@ -16,7 +16,6 @@ src/auto/link.sed
|
|||||||
src/auto/pathdef.c
|
src/auto/pathdef.c
|
||||||
|
|
||||||
# Windows
|
# Windows
|
||||||
.hgignore
|
|
||||||
*.exe
|
*.exe
|
||||||
*.idb
|
*.idb
|
||||||
*.manifest
|
*.manifest
|
||||||
|
@@ -11453,7 +11453,7 @@ f_has(argvars, rettv)
|
|||||||
#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
|
#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
|
||||||
"win32unix",
|
"win32unix",
|
||||||
#endif
|
#endif
|
||||||
#ifdef WIN64
|
#if defined(WIN64) || defined(_WIN64)
|
||||||
"win64",
|
"win64",
|
||||||
#endif
|
#endif
|
||||||
#ifdef EBCDIC
|
#ifdef EBCDIC
|
||||||
|
@@ -681,6 +681,8 @@ static char *(features[]) =
|
|||||||
|
|
||||||
static int included_patches[] =
|
static int included_patches[] =
|
||||||
{ /* Add new patch number below this line */
|
{ /* Add new patch number below this line */
|
||||||
|
/**/
|
||||||
|
328,
|
||||||
/**/
|
/**/
|
||||||
327,
|
327,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user