updated for version 7.2-032
author |
vimboss |
date |
Sun, 09 Nov 2008 16:22:01 +0000 |
parents |
5a7384b9ca66 |
children |
35abb7026415 |
files |
src/eval.c src/version.c |
diffstat |
2 files changed, 4 insertions(+), 2 deletions(-)
[+]
|
line diff
--- 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)
{
--- 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,