# HG changeset patch # User vimboss # Date 1226247721 0 # Node ID 619b90abfdc95e3b1d0981a8995b942c6a7c3c29 # Parent 5a7384b9ca6691ee880dd4e01dddcba5dcac4f6d updated for version 7.2-032 diff --git a/src/eval.c b/src/eval.c --- 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 --- a/src/version.c +++ b/src/version.c @@ -677,6 +677,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 32, +/**/ 31, /**/ 30,