comparison src/proto/evalfunc.pro @ 22842:f2fbbb72ff28 v8.2.1968

patch 8.2.1968: Vim9: has() assumes a feature does not change dynamically Commit: https://github.com/vim/vim/commit/8cebd43e9774d2624af43ee5b86939886f2ba490 Author: Bram Moolenaar <Bram@vim.org> Date: Sun Nov 8 12:49:47 2020 +0100 patch 8.2.1968: Vim9: has() assumes a feature does not change dynamically Problem: Vim9: has() assumes a feature does not change dynamically. Solution: Check whether a feature may change dynamically. (closes https://github.com/vim/vim/issues/7265)
author Bram Moolenaar <Bram@vim.org>
date Sun, 08 Nov 2020 13:00:04 +0100
parents c6b17787a38f
children 34aa2907082a
comparison
equal deleted inserted replaced
22841:079dd4d56017 22842:f2fbbb72ff28
14 buf_T *get_buf_arg(typval_T *arg); 14 buf_T *get_buf_arg(typval_T *arg);
15 win_T *get_optional_window(typval_T *argvars, int idx); 15 win_T *get_optional_window(typval_T *argvars, int idx);
16 void execute_redir_str(char_u *value, int value_len); 16 void execute_redir_str(char_u *value, int value_len);
17 void execute_common(typval_T *argvars, typval_T *rettv, int arg_off); 17 void execute_common(typval_T *argvars, typval_T *rettv, int arg_off);
18 void f_has(typval_T *argvars, typval_T *rettv); 18 void f_has(typval_T *argvars, typval_T *rettv);
19 int dynamic_feature(char_u *feature);
19 void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv); 20 void mzscheme_call_vim(char_u *name, typval_T *args, typval_T *rettv);
20 void range_list_materialize(list_T *list); 21 void range_list_materialize(list_T *list);
21 float_T vim_round(float_T f); 22 float_T vim_round(float_T f);
22 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); 23 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);
23 void f_string(typval_T *argvars, typval_T *rettv); 24 void f_string(typval_T *argvars, typval_T *rettv);