summaryrefslogtreecommitdiffstats
path: root/src/userfunc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/userfunc.c')
-rw-r--r--src/userfunc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/userfunc.c b/src/userfunc.c
index 7341878758..650dfc9d12 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -4495,6 +4495,12 @@ define_function(exarg_T *eap, char_u *name_arg, garray_T *lines_to_free)
}
}
}
+ else if (vim9script && vim_strchr(name, AUTOLOAD_CHAR) != NULL)
+ {
+ semsg(_(e_using_autoload_name_in_non_autoload_script_str),
+ name);
+ goto erret;
+ }
}
if (var_conflict)
{