summaryrefslogtreecommitdiff
path: root/src/vim9compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vim9compile.c')
-rw-r--r--src/vim9compile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vim9compile.c b/src/vim9compile.c
index e8e8598e6..64f7dd59b 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -2434,8 +2434,10 @@ compile_call(char_u **arg, size_t varlen, cctx_T *cctx, int argcount_init)
}
// If the name is a variable, load it and use PCALL.
+ // Not for g:Func(), we don't know if it is a variable or not.
p = namebuf;
- if (compile_load(&p, namebuf + varlen, cctx, FALSE) == OK)
+ if (STRNCMP(namebuf, "g:", 2) != 0
+ && compile_load(&p, namebuf + varlen, cctx, FALSE) == OK)
{
res = generate_PCALL(cctx, argcount, FALSE);
goto theend;