From: Bram Moolenaar Date: Tue, 21 Oct 2014 16:17:09 +0000 (+0200) Subject: updated for version 7.4.484 X-Git-Tag: v7.4.484 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cb5ea1401a048b5c3e0e2c4d3afc72184f3604ad;p=vim updated for version 7.4.484 Problem: Compiler warning on MS-Windows. (Ken Takata) Solution: Add type cast. --- diff --git a/src/getchar.c b/src/getchar.c index cc93a7dd8..cafa660c4 100644 --- a/src/getchar.c +++ b/src/getchar.c @@ -4530,7 +4530,7 @@ check_abbr(c, ptr, col, mincol) if (q != NULL) { vim_unescape_csi(q); - qlen = STRLEN(q); + qlen = (int)STRLEN(q); vim_free(q); } } diff --git a/src/version.c b/src/version.c index 7d1a1914b..e0efbb6c3 100644 --- a/src/version.c +++ b/src/version.c @@ -741,6 +741,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 484, /**/ 483, /**/