From: Bram Moolenaar Date: Wed, 25 May 2011 15:29:44 +0000 (+0200) Subject: updated for version 7.3.204 X-Git-Tag: v7.3.204 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9b83c2f979ee756eab63dc93c67cb4ad165f10f3;p=vim updated for version 7.3.204 Problem: Compiler warning. Solution: Add type cast. (Mike Williams) --- diff --git a/src/misc1.c b/src/misc1.c index 59add064a..913da2ad7 100644 --- a/src/misc1.c +++ b/src/misc1.c @@ -7657,7 +7657,7 @@ get_c_indent() * not the one from "if () {". */ if (*l == '}') curwin->w_cursor.col = - (l - ml_get_curline()) + 1; + (colnr_T)(l - ml_get_curline()) + 1; if ((trypos = find_start_brace(ind_maxcomment)) == NULL diff --git a/src/version.c b/src/version.c index d8811b268..8de124f29 100644 --- a/src/version.c +++ b/src/version.c @@ -709,6 +709,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 204, /**/ 203, /**/