0
0
mirror of https://github.com/vim/vim.git synced 2025-09-28 04:24:06 -04:00

patch 9.0.0398: members of funccall_T are inconsistently named

Problem:    Members of funccall_T are inconsistently named.
Solution:   Use the "fc_" prefix for all members.
This commit is contained in:
Bram Moolenaar
2022-09-06 18:57:08 +01:00
parent 58779858fb
commit ca16c60f33
6 changed files with 170 additions and 165 deletions

View File

@@ -3391,7 +3391,8 @@ find_var_ht(char_u *name, char_u **varname)
if (*name == 'v') // v: variable
return &vimvarht;
if (get_current_funccal() != NULL
&& get_current_funccal()->func->uf_def_status == UF_NOT_COMPILED)
&& get_current_funccal()->fc_func->uf_def_status
== UF_NOT_COMPILED)
{
// a: and l: are only used in functions defined with ":function"
if (*name == 'a') // a: function argument