comparison src/proto/eval.pro @ 15211:de63593896b3 v8.1.0615

patch 8.1.0615: get_tv function names are not consistent commit https://github.com/vim/vim/commit/d155d7a8519987361169459b8d464ae1caef5e9c Author: Bram Moolenaar <Bram@vim.org> Date: Fri Dec 21 16:04:21 2018 +0100 patch 8.1.0615: get_tv function names are not consistent Problem: Get_tv function names are not consistent. Solution: Rename to tv_get.
author Bram Moolenaar <Bram@vim.org>
date Fri, 21 Dec 2018 16:15:06 +0100
parents 2c0bfa167468
children dada0b389d4f
comparison
equal deleted inserted replaced
15210:fbb2936c39b6 15211:de63593896b3
80 int handle_subscript(char_u **arg, typval_T *rettv, int evaluate, int verbose); 80 int handle_subscript(char_u **arg, typval_T *rettv, int evaluate, int verbose);
81 typval_T *alloc_tv(void); 81 typval_T *alloc_tv(void);
82 void free_tv(typval_T *varp); 82 void free_tv(typval_T *varp);
83 void clear_tv(typval_T *varp); 83 void clear_tv(typval_T *varp);
84 void init_tv(typval_T *varp); 84 void init_tv(typval_T *varp);
85 varnumber_T get_tv_number(typval_T *varp); 85 varnumber_T tv_get_number(typval_T *varp);
86 varnumber_T get_tv_number_chk(typval_T *varp, int *denote); 86 varnumber_T tv_get_number_chk(typval_T *varp, int *denote);
87 float_T get_tv_float(typval_T *varp); 87 float_T tv_get_float(typval_T *varp);
88 char_u *get_tv_string(typval_T *varp); 88 char_u *tv_get_string(typval_T *varp);
89 char_u *get_tv_string_buf(typval_T *varp, char_u *buf); 89 char_u *tv_get_string_buf(typval_T *varp, char_u *buf);
90 char_u *get_tv_string_chk(typval_T *varp); 90 char_u *tv_get_string_chk(typval_T *varp);
91 char_u *get_tv_string_buf_chk(typval_T *varp, char_u *buf); 91 char_u *tv_get_string_buf_chk(typval_T *varp, char_u *buf);
92 dictitem_T *find_var(char_u *name, hashtab_T **htp, int no_autoload); 92 dictitem_T *find_var(char_u *name, hashtab_T **htp, int no_autoload);
93 dictitem_T *find_var_in_ht(hashtab_T *ht, int htname, char_u *varname, int no_autoload); 93 dictitem_T *find_var_in_ht(hashtab_T *ht, int htname, char_u *varname, int no_autoload);
94 hashtab_T *find_var_ht(char_u *name, char_u **varname); 94 hashtab_T *find_var_ht(char_u *name, char_u **varname);
95 char_u *get_var_value(char_u *name); 95 char_u *get_var_value(char_u *name);
96 void new_script_vars(scid_T id); 96 void new_script_vars(scid_T id);