comparison src/proto/userfunc.pro @ 27669:5c4ab8d4472c v8.2.4360

patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistencies Commit: https://github.com/vim/vim/commit/a749a42ed25534c88c636e5ab6603f1f97b857a4 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Feb 12 19:52:25 2022 +0000 patch 8.2.4360: Vim9: allowing use of "s:" leads to inconsistencies Problem: Vim9: allowing use of "s:" leads to inconsistencies. Solution: Disallow using "s:" in Vim9 script at the script level.
author Bram Moolenaar <Bram@vim.org>
date Sat, 12 Feb 2022 21:00:03 +0100
parents a14c4d3e3260
children 292a6bd86c30
comparison
equal deleted inserted replaced
27668:407a08328369 27669:5c4ab8d4472c
22 int check_user_func_argcount(ufunc_T *fp, int argcount); 22 int check_user_func_argcount(ufunc_T *fp, int argcount);
23 int call_user_func_check(ufunc_T *fp, int argcount, typval_T *argvars, typval_T *rettv, funcexe_T *funcexe, dict_T *selfdict); 23 int call_user_func_check(ufunc_T *fp, int argcount, typval_T *argvars, typval_T *rettv, funcexe_T *funcexe, dict_T *selfdict);
24 void save_funccal(funccal_entry_T *entry); 24 void save_funccal(funccal_entry_T *entry);
25 void restore_funccal(void); 25 void restore_funccal(void);
26 funccall_T *get_current_funccal(void); 26 funccall_T *get_current_funccal(void);
27 int at_script_level(void);
27 void delete_script_functions(int sid); 28 void delete_script_functions(int sid);
28 void free_all_functions(void); 29 void free_all_functions(void);
29 int builtin_function(char_u *name, int len); 30 int builtin_function(char_u *name, int len);
30 int func_call(char_u *name, typval_T *args, partial_T *partial, dict_T *selfdict, typval_T *rettv); 31 int func_call(char_u *name, typval_T *args, partial_T *partial, dict_T *selfdict, typval_T *rettv);
31 int get_callback_depth(void); 32 int get_callback_depth(void);