mirror of
https://github.com/vim/vim.git
synced 2025-10-06 05:44:14 -04:00
Problem: Vim9: Memory leak when using a closure. Solution: Compute the mininal refcount in the funcstack. Reenable disabled tests.
9 lines
342 B
C
9 lines
342 B
C
/* vim9execute.c */
|
|
void to_string_error(vartype_T vartype);
|
|
void funcstack_check_refcount(funcstack_T *funcstack);
|
|
int call_def_function(ufunc_T *ufunc, int argc_arg, typval_T *argv, partial_T *partial, typval_T *rettv);
|
|
void ex_disassemble(exarg_T *eap);
|
|
int tv2bool(typval_T *tv);
|
|
int check_not_string(typval_T *tv);
|
|
/* vim: set ft=c : */
|