summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvimboss <devnull@localhost>2008-11-09 16:22:01 +0000
committervimboss <devnull@localhost>2008-11-09 16:22:01 +0000
commit4179b98556a0ad3d7abc4291d65d73b04b20536e (patch)
treeb7926e16bad7900c945d2aee623bddf71317cf29
parent4d0f55fcc4f9286fd1ac3816f2edcffd4d254e13 (diff)
downloadvim-7.2.032.tar.gz
updated for version 7.2-032v7.2.032v7-2-032
-rw-r--r--src/eval.c4
-rw-r--r--src/version.c2
2 files changed, 4 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index e455cb82..5573e764 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 fb96904f..e21e8e21 100644
--- 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,