changeset 15890:de2c2a378cd1 v8.1.0951

patch 8.1.0951: using WIN64 even though it is never defined commit https://github.com/vim/vim/commit/44b443c5db7a372b2da519be15dd962c552e1355 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Feb 18 22:14:18 2019 +0100 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 https://github.com/vim/vim/issues/3997)
author Bram Moolenaar <Bram@vim.org>
date Mon, 18 Feb 2019 22:15:08 +0100
parents 75aa353fddf4
children 57db11959a14
files src/evalfunc.c src/version.c
diffstat 2 files changed, 3 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/evalfunc.c
+++ b/src/evalfunc.c
@@ -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
--- a/src/version.c
+++ b/src/version.c
@@ -780,6 +780,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    951,
+/**/
     950,
 /**/
     949,