comparison src/proto/evalfunc.pro @ 15355:73b153ed5af8 v8.1.0685

patch 8.1.0685: get_buf_tv() is named inconsistently commit https://github.com/vim/vim/commit/f2d79fa92d0ed90732f52dd88da4ad66c2c5ce13 Author: Bram Moolenaar <Bram@vim.org> Date: Thu Jan 3 22:19:27 2019 +0100 patch 8.1.0685: get_buf_tv() is named inconsistently Problem: get_buf_tv() is named inconsistently. Solution: Rename it to tv_get_buf(). (Yegappan Lakshmanan, closes https://github.com/vim/vim/issues/3759)
author Bram Moolenaar <Bram@vim.org>
date Thu, 03 Jan 2019 22:30:06 +0100
parents dada0b389d4f
children 4790302965fc
comparison
equal deleted inserted replaced
15354:c094a45062aa 15355:73b153ed5af8
2 char_u *get_function_name(expand_T *xp, int idx); 2 char_u *get_function_name(expand_T *xp, int idx);
3 char_u *get_expr_name(expand_T *xp, int idx); 3 char_u *get_expr_name(expand_T *xp, int idx);
4 int find_internal_func(char_u *name); 4 int find_internal_func(char_u *name);
5 int call_internal_func(char_u *name, int argcount, typval_T *argvars, typval_T *rettv); 5 int call_internal_func(char_u *name, int argcount, typval_T *argvars, typval_T *rettv);
6 buf_T *buflist_find_by_name(char_u *name, int curtab_only); 6 buf_T *buflist_find_by_name(char_u *name, int curtab_only);
7 buf_T *get_buf_tv(typval_T *tv, int curtab_only); 7 buf_T *tv_get_buf(typval_T *tv, int curtab_only);
8 void execute_redir_str(char_u *value, int value_len); 8 void execute_redir_str(char_u *value, int value_len);
9 void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv); 9 void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv);
10 float_T vim_round(float_T f); 10 float_T vim_round(float_T f);
11 long do_searchpair(char_u *spat, char_u *mpat, char_u *epat, int dir, typval_T *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit); 11 long do_searchpair(char_u *spat, char_u *mpat, char_u *epat, int dir, typval_T *skip, int flags, pos_T *match_pos, linenr_T lnum_stop, long time_limit);
12 void f_string(typval_T *argvars, typval_T *rettv); 12 void f_string(typval_T *argvars, typval_T *rettv);