From: Bram Moolenaar Date: Sat, 4 May 2013 01:40:27 +0000 (+0200) Subject: updated for version 7.3.920 X-Git-Tag: v7.3.920 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e0d974645012c3fc07d1754a4729d21e49773b6;p=vim updated for version 7.3.920 Problem: Compiler warning for size_t to int. Solution: Add a type cast. (Mike Williams) --- diff --git a/src/misc1.c b/src/misc1.c index 789aad373..913d5aba7 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -10139,7 +10139,7 @@ expand_path_option(curdir, gap) # if defined(MSWIN) || defined(MSDOS) /* Avoid the path ending in a backslash, it fails when a comma is * appended. */ - len = STRLEN(buf); + len = (int)STRLEN(buf); if (buf[len - 1] == '\\') buf[len - 1] = '/'; # endif diff --git a/src/version.c b/src/version.c index df8fe9a76..0811257c4 100644 --- a/src/version.c +++ b/src/version.c @@ -728,6 +728,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 920, /**/ 919, /**/