From: Bram Moolenaar Date: Tue, 26 Feb 2013 20:43:32 +0000 (+0100) Subject: updated for version 7.3.842 X-Git-Tag: v7.3.842 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=988232fabba5d5dc154fcb962243a36740f02b12;p=vim updated for version 7.3.842 Problem: Compiler warning for signed/unsigned pointer. Solution: Add type cast. (Christian Brabandt) --- diff --git a/src/eval.c b/src/eval.c index d5a41fbce..ad200598b 100644 --- a/src/eval.c +++ b/src/eval.c @@ -5170,7 +5170,7 @@ eval7(arg, rettv, evaluate, want_string) * what follows. So set it here. */ if (rettv->v_type == VAR_UNKNOWN && !evaluate && **arg == '(') { - rettv->vval.v_string = vim_strsave(""); + rettv->vval.v_string = vim_strsave((char_u *)""); rettv->v_type = VAR_FUNC; } diff --git a/src/version.c b/src/version.c index 6098591c0..f49cd4a0c 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 */ +/**/ + 842, /**/ 841, /**/