summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2005-06-01 21:57:40 +0000
committerBram Moolenaar <Bram@vim.org>2005-06-01 21:57:40 +0000
commit4debb442bd885d182d7f77d1dfcdf143fd7cbf88 (patch)
treeecc8727f390f23092681ad1b02782767197debce
parent6c0b44b5bf930129a57ff71b1d0c7ffcbc6b0bf5 (diff)
downloadvim-git-7.0078.tar.gz
updated for version 7.0078v7.0078
-rw-r--r--src/eval.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/eval.c b/src/eval.c
index 108d93de3..1051beb60 100644
--- 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;