From: Bram Moolenaar Date: Mon, 11 Nov 2013 22:17:39 +0000 (+0100) Subject: updated for version 7.4.087 X-Git-Tag: v7.4.087 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efe06f4dd8713e5a8dc8c537b0fdf89101a87c20;p=vim updated for version 7.4.087 Problem: Compiler warning on 64 bit Windows systems. Solution: Fix type cast. (Mike Williams) --- diff --git a/src/ops.c b/src/ops.c index 0aebfa14f..bf6519189 100644 --- a/src/ops.c +++ b/src/ops.c @@ -2193,7 +2193,8 @@ op_replace(oap, c) else { /* Replacing with \r or \n means splitting the line. */ - after_p = alloc_check((unsigned)oldlen + 1 + n - STRLEN(newp)); + after_p = alloc_check( + (unsigned)(oldlen + 1 + n - STRLEN(newp))); if (after_p != NULL) STRMOVE(after_p, oldp); } diff --git a/src/version.c b/src/version.c index f4555c726..9b78b171d 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 */ +/**/ + 87, /**/ 86, /**/