comparison src/proto/userfunc.pro @ 20079:336483164ca6 v8.2.0595

patch 8.2.0595: Vim9: not all commands using ends_excmd() tested Commit: https://github.com/vim/vim/commit/a26b9700d73ebccd6c5459d0d66032a4249f6b72 Author: Bram Moolenaar <Bram@vim.org> Date: Sat Apr 18 19:53:28 2020 +0200 patch 8.2.0595: Vim9: not all commands using ends_excmd() tested Problem: Vim9: not all commands using ends_excmd() tested. Solution: Find # comment after regular commands. Add more tests. Report error for where it was caused.
author Bram Moolenaar <Bram@vim.org>
date Sat, 18 Apr 2020 20:00:04 +0200
parents c001ee73519a
children 63cc54100ae4
comparison
equal deleted inserted replaced
20078:61222b5d173d 20079:336483164ca6
18 int get_callback_depth(void); 18 int get_callback_depth(void);
19 int call_callback(callback_T *callback, int len, typval_T *rettv, int argcount, typval_T *argvars); 19 int call_callback(callback_T *callback, int len, typval_T *rettv, int argcount, typval_T *argvars);
20 void user_func_error(int error, char_u *name); 20 void user_func_error(int error, char_u *name);
21 int call_func(char_u *funcname, int len, typval_T *rettv, int argcount_in, typval_T *argvars_in, funcexe_T *funcexe); 21 int call_func(char_u *funcname, int len, typval_T *rettv, int argcount_in, typval_T *argvars_in, funcexe_T *funcexe);
22 char_u *trans_function_name(char_u **pp, int skip, int flags, funcdict_T *fdp, partial_T **partial); 22 char_u *trans_function_name(char_u **pp, int skip, int flags, funcdict_T *fdp, partial_T **partial);
23 char_u *untrans_function_name(char_u *name);
23 void ex_function(exarg_T *eap); 24 void ex_function(exarg_T *eap);
24 int eval_fname_script(char_u *p); 25 int eval_fname_script(char_u *p);
25 int translated_function_exists(char_u *name); 26 int translated_function_exists(char_u *name);
26 int has_varargs(ufunc_T *ufunc); 27 int has_varargs(ufunc_T *ufunc);
27 int function_exists(char_u *name, int no_deref); 28 int function_exists(char_u *name, int no_deref);