mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.4086: "cctx" argument of find_func_even_dead() is unused
Problem: "cctx" argument of find_func_even_dead() is unused. Solution: Remove the argument.
This commit is contained in:
@@ -1113,7 +1113,7 @@ f_test_refcount(typval_T *argvars, typval_T *rettv)
|
||||
{
|
||||
ufunc_T *fp;
|
||||
|
||||
fp = find_func(argvars[0].vval.v_string, FALSE, NULL);
|
||||
fp = find_func(argvars[0].vval.v_string, FALSE);
|
||||
if (fp != NULL)
|
||||
retval = fp->uf_refcount;
|
||||
}
|
||||
|
Reference in New Issue
Block a user