]> granicus.if.org Git - vim/commitdiff
patch 8.1.0951: using WIN64 even though it is never defined v8.1.0951
authorBram Moolenaar <Bram@vim.org>
Mon, 18 Feb 2019 21:14:18 +0000 (22:14 +0100)
committerBram Moolenaar <Bram@vim.org>
Mon, 18 Feb 2019 21:14:18 +0000 (22:14 +0100)
Problem:    Using WIN64 even though it is never defined.
Solution:   Only use _WIN64. (Ken Takata, closes #3997)

src/evalfunc.c
src/version.c

index e94d875da980f933697ba8731f611a62f91a6d36..7f50555fc2275b2b1459fab6aaba7f897ad9d5b7 100644 (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
index fe498ecf51beca19ce3ceaff93e8d89fe007f06f..ee3404233181e2ebe306f3bec1e19d9db7c7dbbc 100644 (file)
@@ -779,6 +779,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    951,
 /**/
     950,
 /**/