summaryrefslogtreecommitdiff
path: root/src/proto/eval.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2012-07-16 17:31:53 +0200
committerBram Moolenaar <Bram@vim.org>2012-07-16 17:31:53 +0200
commitbdb620560b3199828f9852e9c9453d56e951a5f9 (patch)
tree3901feff854f6353d8f82127f936289ba5a73cf6 /src/proto/eval.pro
parentc2ece10274c01c50534bfdcd4d8a03229356101d (diff)
downloadvim-git-bdb620560b3199828f9852e9c9453d56e951a5f9.tar.gz
updated for version 7.3.603v7.3.603
Problem: It is possible to add replace builtin functions by calling extend() on g:. Solution: Add a flag to a dict to indicate it is a scope. Check for existing functions. (ZyX)
Diffstat (limited to 'src/proto/eval.pro')
-rw-r--r--src/proto/eval.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/eval.pro b/src/proto/eval.pro
index 2454f2a53..63c140c55 100644
--- a/src/proto/eval.pro
+++ b/src/proto/eval.pro
@@ -93,7 +93,7 @@ long get_tv_number_chk __ARGS((typval_T *varp, int *denote));
char_u *get_tv_string_chk __ARGS((typval_T *varp));
char_u *get_var_value __ARGS((char_u *name));
void new_script_vars __ARGS((scid_T id));
-void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var));
+void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var, int scope));
void vars_clear __ARGS((hashtab_T *ht));
void copy_tv __ARGS((typval_T *from, typval_T *to));
void ex_echo __ARGS((exarg_T *eap));