# HG changeset patch # User vimboss # Date 1117663060 0 # Node ID 2bfc2b7033147de9689cf2d651bd8ef36fdac68b # Parent f9de3e679a04077d866a4b453d83c6aed7d57788 updated for version 7.0078 diff --git a/src/eval.c b/src/eval.c --- 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;