]> granicus.if.org Git - vim/commitdiff
updated for version 7.0078 v7.0078
authorBram Moolenaar <Bram@vim.org>
Wed, 1 Jun 2005 21:57:40 +0000 (21:57 +0000)
committerBram Moolenaar <Bram@vim.org>
Wed, 1 Jun 2005 21:57:40 +0000 (21:57 +0000)
src/eval.c

index 108d93de339111578e042d94b320301a49719951..1051beb6098dcd4aa90cfc7981b54cb3db731065 100644 (file)
@@ -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;