changeset 299:2bfc2b703314 v7.0078

updated for version 7.0078
author vimboss
date Wed, 01 Jun 2005 21:57:40 +0000
parents f9de3e679a04
children 86cd0a77d2ae
files src/eval.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/eval.c
+++ b/src/eval.c
@@ -120,7 +120,7 @@ static dictitem_T	globvars_var;
  * Old Vim variables such as "v:version" are also available without the "v:".
  * Also in functions.  We need a special hashtable for them.
  */
-hashtab_T		compat_hashtab;
+static hashtab_T	compat_hashtab;
 
 /*
  * Array to hold the hashtab with variables local to each sourced script.
@@ -188,7 +188,7 @@ struct ufunc
 /*
  * All user-defined functions are found in this hash table.
  */
-hashtab_T	func_hashtab;
+static hashtab_T	func_hashtab;
 
 /* From user function to hashitem and back. */
 static ufunc_T dumuf;