comparison src/proto/eval.pro @ 4287:dc3efb6d5a08 v7.3.893

updated for version 7.3.893 Problem: Crash when using b:, w: or t: after closing the buffer, window or tabpage. Solution: Allocate the dictionary instead of having it part of the buffer/window/tabpage struct. (Yukihiro Nakadaira)
author Bram Moolenaar <bram@vim.org>
date Mon, 15 Apr 2013 12:27:36 +0200
parents 16e8a09e8ab0
children 7eaccdaa5304
comparison
equal deleted inserted replaced
4286:afcc61d24129 4287:dc3efb6d5a08
22 int eval_to_number __ARGS((char_u *expr)); 22 int eval_to_number __ARGS((char_u *expr));
23 list_T *eval_spell_expr __ARGS((char_u *badword, char_u *expr)); 23 list_T *eval_spell_expr __ARGS((char_u *badword, char_u *expr));
24 int get_spellword __ARGS((list_T *list, char_u **pp)); 24 int get_spellword __ARGS((list_T *list, char_u **pp));
25 typval_T *eval_expr __ARGS((char_u *arg, char_u **nextcmd)); 25 typval_T *eval_expr __ARGS((char_u *arg, char_u **nextcmd));
26 int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, int str_arg_only, typval_T *rettv)); 26 int call_vim_function __ARGS((char_u *func, int argc, char_u **argv, int safe, int str_arg_only, typval_T *rettv));
27 long call_func_retnr __ARGS((char_u *func, int argc, char_u **argv, int safe));
27 void *call_func_retstr __ARGS((char_u *func, int argc, char_u **argv, int safe)); 28 void *call_func_retstr __ARGS((char_u *func, int argc, char_u **argv, int safe));
28 long call_func_retnr __ARGS((char_u *func, int argc, char_u **argv, int safe));
29 void *call_func_retlist __ARGS((char_u *func, int argc, char_u **argv, int safe)); 29 void *call_func_retlist __ARGS((char_u *func, int argc, char_u **argv, int safe));
30 void *save_funccal __ARGS((void)); 30 void *save_funccal __ARGS((void));
31 void restore_funccal __ARGS((void *vfc)); 31 void restore_funccal __ARGS((void *vfc));
32 void prof_child_enter __ARGS((proftime_T *tm)); 32 void prof_child_enter __ARGS((proftime_T *tm));
33 void prof_child_exit __ARGS((proftime_T *tm)); 33 void prof_child_exit __ARGS((proftime_T *tm));
93 long get_tv_number_chk __ARGS((typval_T *varp, int *denote)); 93 long get_tv_number_chk __ARGS((typval_T *varp, int *denote));
94 char_u *get_tv_string_chk __ARGS((typval_T *varp)); 94 char_u *get_tv_string_chk __ARGS((typval_T *varp));
95 char_u *get_var_value __ARGS((char_u *name)); 95 char_u *get_var_value __ARGS((char_u *name));
96 void new_script_vars __ARGS((scid_T id)); 96 void new_script_vars __ARGS((scid_T id));
97 void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var, int scope)); 97 void init_var_dict __ARGS((dict_T *dict, dictitem_T *dict_var, int scope));
98 void unref_var_dict __ARGS((dict_T *dict));
98 void vars_clear __ARGS((hashtab_T *ht)); 99 void vars_clear __ARGS((hashtab_T *ht));
99 void copy_tv __ARGS((typval_T *from, typval_T *to)); 100 void copy_tv __ARGS((typval_T *from, typval_T *to));
100 void ex_echo __ARGS((exarg_T *eap)); 101 void ex_echo __ARGS((exarg_T *eap));
101 void ex_echohl __ARGS((exarg_T *eap)); 102 void ex_echohl __ARGS((exarg_T *eap));
102 void ex_execute __ARGS((exarg_T *eap)); 103 void ex_execute __ARGS((exarg_T *eap));