From: Bram Moolenaar Date: Sun, 9 Nov 2008 16:22:01 +0000 (+0000) Subject: updated for version 7.2-032 X-Git-Tag: v7.2.032 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=121932191b397859832c3585cb1a17a7c041ac01;p=vim updated for version 7.2-032 --- diff --git a/src/eval.c b/src/eval.c index e455cb825..5573e764d 100644 --- a/src/eval.c +++ b/src/eval.c @@ -846,8 +846,8 @@ eval_clear() p = &vimvars[i]; if (p->vv_di.di_tv.v_type == VAR_STRING) { - vim_free(p->vv_string); - p->vv_string = NULL; + vim_free(p->vv_str); + p->vv_str = NULL; } else if (p->vv_di.di_tv.v_type == VAR_LIST) { diff --git a/src/version.c b/src/version.c index fb96904f1..e21e8e218 100644 --- a/src/version.c +++ b/src/version.c @@ -676,6 +676,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 32, /**/ 31, /**/