summaryrefslogtreecommitdiff
path: root/src/userfunc.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-11-10 17:33:29 +0100
committerBram Moolenaar <Bram@vim.org>2018-11-10 17:33:29 +0100
commitded5f1bed7ff2d138b3ee0f9610d17290b62692d (patch)
tree54727bd70279df4fadc4b8f4701577ac33282ef5 /src/userfunc.c
parent1bbb61948342b5cf6e363629f145c65eb455c388 (diff)
downloadvim-git-ded5f1bed7ff2d138b3ee0f9610d17290b62692d.tar.gz
patch 8.1.0515: reloading a script gives errors for existing functionsv8.1.0515
Problem: Reloading a script gives errors for existing functions. Solution: Allow redefining a function once when reloading a script.
Diffstat (limited to 'src/userfunc.c')
-rw-r--r--src/userfunc.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/userfunc.c b/src/userfunc.c
index f79e7f175..8bfebec64 100644
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -2330,14 +2330,19 @@ ex_function(exarg_T *eap)
fp = find_func(name);
if (fp != NULL)
{
- if (!eap->forceit)
+ // Function can be replaced with "function!" and when sourcing the
+ // same script again, but only once.
+ if (!eap->forceit
+ && (fp->uf_script_ctx.sc_sid != current_sctx.sc_sid
+ || fp->uf_script_ctx.sc_seq == current_sctx.sc_seq))
{
emsg_funcname(e_funcexts, name);
goto erret;
}
if (fp->uf_calls > 0)
{
- emsg_funcname(N_("E127: Cannot redefine function %s: It is in use"),
+ emsg_funcname(
+ N_("E127: Cannot redefine function %s: It is in use"),
name);
goto erret;
}