]> granicus.if.org Git - vim/commitdiff
updated for version 7.4.144 v7.4.144
authorBram Moolenaar <Bram@vim.org>
Tue, 14 Jan 2014 11:18:45 +0000 (12:18 +0100)
committerBram Moolenaar <Bram@vim.org>
Tue, 14 Jan 2014 11:18:45 +0000 (12:18 +0100)
Problem:    MingW also supports intptr_t for OPEN_OH_ARGTYPE.
Solution:   Adjust #ifdef. (Ken Takata)

src/os_mswin.c
src/version.c

index 4b2f3cf073edadf54db246fe1e90745f277c3415..c7eab50d5192fb5f86ad35c2e5bdbd4ab48c7ef1 100644 (file)
@@ -498,7 +498,7 @@ slash_adjust(p)
     }
 }
 
-#if (_MSC_VER >= 1300)
+#if (defined(_MSC_VER) && (_MSC_VER >= 1300)) || defined(__MINGW32__)
 # define OPEN_OH_ARGTYPE intptr_t
 #else
 # define OPEN_OH_ARGTYPE long
index c3281cafcb292b37d518395308a73dba2c79970a..8ecdef609e7b2837a65eb38ee8e68a032e2fc1b5 100644 (file)
@@ -738,6 +738,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    144,
 /**/
     143,
 /**/