mirror of
https://github.com/vim/vim.git
synced 2025-10-18 07:54:29 -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:
@@ -6158,7 +6158,7 @@ f_has(typval_T *argvars, typval_T *rettv)
|
|||||||
#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
|
#if defined(UNIX) && (defined(__CYGWIN32__) || defined(__CYGWIN__))
|
||||||
"win32unix",
|
"win32unix",
|
||||||
#endif
|
#endif
|
||||||
#if defined(WIN64) || defined(_WIN64)
|
#ifdef _WIN64
|
||||||
"win64",
|
"win64",
|
||||||
#endif
|
#endif
|
||||||
#ifdef EBCDIC
|
#ifdef EBCDIC
|
||||||
|
@@ -779,6 +779,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 */
|
||||||
|
/**/
|
||||||
|
951,
|
||||||
/**/
|
/**/
|
||||||
950,
|
950,
|
||||||
/**/
|
/**/
|
||||||
|
Reference in New Issue
Block a user