0
0
mirror of https://github.com/vim/vim.git synced 2025-08-29 20:33:37 -04:00

updated for version 7.0078

This commit is contained in:
Bram Moolenaar 2005-06-01 21:57:40 +00:00
parent 6c0b44b5bf
commit 4debb442bd

View 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;