From: Bram Moolenaar Date: Fri, 14 May 2010 13:42:53 +0000 (+0200) Subject: updated for version 7.2.425 X-Git-Tag: v7.2.425 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2321c9255e2330439e821d77fe828e5ce8c9d499;p=vim updated for version 7.2.425 Problem: Some compilers complain about fourth EX() argument. Solution: Add cast to long_u. --- diff --git a/src/ex_cmds.h b/src/ex_cmds.h index 6720cdfc1..a5a9e1203 100644 --- a/src/ex_cmds.h +++ b/src/ex_cmds.h @@ -74,7 +74,7 @@ typedef struct exarg exarg_T; # undef EX /* just in case */ #endif #ifdef DO_DECLARE_EXCMD -# define EX(a, b, c, d) {(char_u *)b, c, d} +# define EX(a, b, c, d) {(char_u *)b, c, (long_u)(d)} typedef void (*ex_func_T) __ARGS((exarg_T *eap)); diff --git a/src/version.c b/src/version.c index e02b90068..5cda9f9e1 100644 --- a/src/version.c +++ b/src/version.c @@ -681,6 +681,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 425, /**/ 424, /**/