comparison src/proto/eval.pro @ 3687:085f14642fe8 v7.3.603

updated for version 7.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)
author Bram Moolenaar <bram@vim.org>
date Mon, 16 Jul 2012 17:31:53 +0200
parents c052f3b79b99
children 2bb51730ef4b
comparison
equal deleted inserted replaced
3686:612cfb8dc628 3687:085f14642fe8
91 void clear_tv __ARGS((typval_T *varp)); 91 void clear_tv __ARGS((typval_T *varp));
92 long get_tv_number_chk __ARGS((typval_T *varp, int *denote)); 92 long get_tv_number_chk __ARGS((typval_T *varp, int *denote));
93 char_u *get_tv_string_chk __ARGS((typval_T *varp)); 93 char_u *get_tv_string_chk __ARGS((typval_T *varp));
94 char_u *get_var_value __ARGS((char_u *name)); 94 char_u *get_var_value __ARGS((char_u *name));
95 void new_script_vars __ARGS((scid_T id)); 95 void new_script_vars __ARGS((scid_T id));
96 void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var)); 96 void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var, int scope));
97 void vars_clear __ARGS((hashtab_T *ht)); 97 void vars_clear __ARGS((hashtab_T *ht));
98 void copy_tv __ARGS((typval_T *from, typval_T *to)); 98 void copy_tv __ARGS((typval_T *from, typval_T *to));
99 void ex_echo __ARGS((exarg_T *eap)); 99 void ex_echo __ARGS((exarg_T *eap));
100 void ex_echohl __ARGS((exarg_T *eap)); 100 void ex_echohl __ARGS((exarg_T *eap));
101 void ex_execute __ARGS((exarg_T *eap)); 101 void ex_execute __ARGS((exarg_T *eap));