From: Bram Moolenaar Date: Tue, 14 Jan 2014 11:18:45 +0000 (+0100) Subject: updated for version 7.4.144 X-Git-Tag: v7.4.144 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9d1685d1cf21cf5c17a52ae8ea143161a0d00d37;p=vim updated for version 7.4.144 Problem: MingW also supports intptr_t for OPEN_OH_ARGTYPE. Solution: Adjust #ifdef. (Ken Takata) --- diff --git a/src/os_mswin.c b/src/os_mswin.c index 4b2f3cf07..c7eab50d5 100644 --- a/src/os_mswin.c +++ b/src/os_mswin.c @@ -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 diff --git a/src/version.c b/src/version.c index c3281cafc..8ecdef609 100644 --- a/src/version.c +++ b/src/version.c @@ -738,6 +738,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 144, /**/ 143, /**/