diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-13 21:15:21 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-13 21:15:21 +0000 |
commit | d9d2fd0aa33dd9f7460d6f1e403505a60f7ce2fc (patch) | |
tree | ce93edde74aa48c017e39bd350b79a7955d89b22 /src/proto/userfunc.pro | |
parent | c43e6235c7b3e64f81c6a4e294e4e47abf7a869a (diff) | |
download | vim-git-d9d2fd0aa33dd9f7460d6f1e403505a60f7ce2fc.tar.gz |
patch 8.2.4086: "cctx" argument of find_func_even_dead() is unusedv8.2.4086
Problem: "cctx" argument of find_func_even_dead() is unused.
Solution: Remove the argument.
Diffstat (limited to 'src/proto/userfunc.pro')
-rw-r--r-- | src/proto/userfunc.pro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proto/userfunc.pro b/src/proto/userfunc.pro index 6b054ffe6..416a33bed 100644 --- a/src/proto/userfunc.pro +++ b/src/proto/userfunc.pro @@ -8,8 +8,8 @@ char_u *deref_func_name(char_u *name, int *lenp, partial_T **partialp, type_T ** void emsg_funcname(char *ermsg, char_u *name); int get_func_tv(char_u *name, int len, typval_T *rettv, char_u **arg, evalarg_T *evalarg, funcexe_T *funcexe); char_u *fname_trans_sid(char_u *name, char_u *fname_buf, char_u **tofree, int *error); -ufunc_T *find_func_even_dead(char_u *name, int is_global, cctx_T *cctx); -ufunc_T *find_func(char_u *name, int is_global, cctx_T *cctx); +ufunc_T *find_func_even_dead(char_u *name, int is_global); +ufunc_T *find_func(char_u *name, int is_global); int func_is_global(ufunc_T *ufunc); int func_name_refcount(char_u *name); void func_clear_free(ufunc_T *fp, int force); |