0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

updated for version 7.3.842

Problem:    Compiler warning for signed/unsigned pointer.
Solution:   Add type cast. (Christian Brabandt)
This commit is contained in:
Bram Moolenaar
2013-02-26 21:43:32 +01:00
parent e17c260335
commit 988232fabb
2 changed files with 3 additions and 1 deletions

View File

@@ -5170,7 +5170,7 @@ eval7(arg, rettv, evaluate, want_string)
* what follows. So set it here. */ * what follows. So set it here. */
if (rettv->v_type == VAR_UNKNOWN && !evaluate && **arg == '(') 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; rettv->v_type = VAR_FUNC;
} }

View File

@@ -728,6 +728,8 @@ static char *(features[]) =
static int included_patches[] = static int included_patches[] =
{ /* Add new patch number below this line */ { /* Add new patch number below this line */
/**/
842,
/**/ /**/
841, 841,
/**/ /**/