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:
@@ -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
|
||||
|
Reference in New Issue
Block a user