summaryrefslogtreecommitdiff
path: root/src/vim9compile.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vim9compile.c')
-rw-r--r--src/vim9compile.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/vim9compile.c b/src/vim9compile.c
index 80f918d9e..4007641bb 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -7797,6 +7797,13 @@ compile_def_function(ufunc_T *ufunc, int check_return_type, cctx_T *outer_cctx)
: (int (*)(char_u *, size_t, void *, cctx_T *))lookup_local,
&cctx);
+ if (p == NULL)
+ {
+ if (cctx.ctx_skip != SKIP_YES)
+ emsg(_(e_ambiguous_use_of_user_defined_command));
+ goto erret;
+ }
+
if (p == ea.cmd && ea.cmdidx != CMD_SIZE)
{
if (cctx.ctx_skip == SKIP_YES)