# HG changeset patch # User vimboss # Date 1189945276 0 # Node ID 6df4e719ce4eb637d6db90febd0d1eb48bf8e96a # Parent 3e0f9984e98e8f020260ff015cc994ccc34059a9 updated for version 7.1-112 diff --git a/src/eval.c b/src/eval.c --- a/src/eval.c +++ b/src/eval.c @@ -11565,14 +11565,12 @@ get_user_input(argvars, rettv, inputdial char_u *xp_arg = NULL; rettv->v_type = VAR_STRING; + rettv->vval.v_string = NULL; #ifdef NO_CONSOLE_INPUT /* While starting up, there is no place to enter text. */ if (no_console_input()) - { - rettv->vval.v_string = NULL; - return; - } + return; #endif cmd_silent = FALSE; /* Want to see the prompt. */ diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -667,6 +667,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 112, +/**/ 111, /**/ 110,