0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 8.2.1445: Vim9: function expanded name is cleared when sourcing again

Problem:    Vim9: function expanded name is cleared when sourcing a script
            again.
Solution:   Only clear the expanded name when deleting the function.
            (closes #6707)
This commit is contained in:
Bram Moolenaar
2020-08-14 17:08:15 +02:00
parent bc4c505166
commit c4ce36d486
3 changed files with 28 additions and 1 deletions

View File

@@ -1090,7 +1090,6 @@ func_clear_items(ufunc_T *fp)
ga_clear_strings(&(fp->uf_args));
ga_clear_strings(&(fp->uf_def_args));
ga_clear_strings(&(fp->uf_lines));
VIM_CLEAR(fp->uf_name_exp);
VIM_CLEAR(fp->uf_arg_types);
VIM_CLEAR(fp->uf_def_arg_idx);
VIM_CLEAR(fp->uf_va_name);
@@ -1146,7 +1145,10 @@ func_free(ufunc_T *fp, int force)
func_remove(fp);
if ((fp->uf_flags & FC_DEAD) == 0 || force)
{
VIM_CLEAR(fp->uf_name_exp);
vim_free(fp);
}
}
/*