Karsten Hopp 318a80
diff -up vim72/src/eval.c.rh514717 vim72/src/eval.c
Karsten Hopp 318a80
--- vim72/src/eval.c.rh514717	2009-08-03 16:15:42.882375154 +0200
Karsten Hopp 318a80
+++ vim72/src/eval.c	2009-08-03 16:34:14.863381780 +0200
Karsten Hopp 318a80
@@ -286,13 +286,12 @@ typedef struct
Karsten Hopp 318a80
 #define VV_RO		2	/* read-only */
Karsten Hopp 318a80
 #define VV_RO_SBX	4	/* read-only in the sandbox */
Karsten Hopp 318a80
 
Karsten Hopp 318a80
-#define VV_NAME(s, t)	s, {{t, 0, {0}}, 0, {0}}, {0}
Karsten Hopp 318a80
+#define VV_NAME(s, t)	s, {{t, 0, {0}}, 0, {0}}
Karsten Hopp 318a80
 
Karsten Hopp 318a80
 static struct vimvar
Karsten Hopp 318a80
 {
Karsten Hopp 318a80
     char	*vv_name;	/* name of variable, without v: */
Karsten Hopp 318a80
     dictitem_T	vv_di;		/* value and name for key */
Karsten Hopp 318a80
-    char	vv_filler[16];	/* space for LONGEST name below!!! */
Karsten Hopp 318a80
     char	vv_flags;	/* VV_COMPAT, VV_RO, VV_RO_SBX */
Karsten Hopp 318a80
 } vimvars[VV_LEN] =
Karsten Hopp 318a80
 {
Karsten Hopp 318a80
diff -up vim72/src/structs.h.rh514717 vim72/src/structs.h
Karsten Hopp 318a80
--- vim72/src/structs.h.rh514717	2009-08-03 16:33:35.274870950 +0200
Karsten Hopp 318a80
+++ vim72/src/structs.h	2009-08-03 16:33:48.607436706 +0200
Karsten Hopp 318a80
@@ -1095,7 +1095,7 @@ struct dictitem_S
Karsten Hopp 318a80
 {
Karsten Hopp 318a80
     typval_T	di_tv;		/* type and value of the variable */
Karsten Hopp 318a80
     char_u	di_flags;	/* flags (only used for variable) */
Karsten Hopp 318a80
-    char_u	di_key[10];	/* key (actually longer!) */
Karsten Hopp 318a80
+    char_u	di_key[18];	/* key */
Karsten Hopp 318a80
 };
Karsten Hopp 318a80
 
Karsten Hopp 318a80
 typedef struct dictitem_S dictitem_T;