diff src/userfunc.c @ 27076:ceff6a546748 v8.2.4067

patch 8.2.4067: Vim9: cannot call imported function with :call Commit: https://github.com/vim/vim/commit/f111cdfae6edf697390e0d9a85082a6526b03da6 Author: Bram Moolenaar <Bram@vim.org> Date: Wed Jan 12 12:48:17 2022 +0000 patch 8.2.4067: Vim9: cannot call imported function with :call Problem: Vim9: cannot call imported function with :call. (Drew Vogel) Solution: Translate the function name. (closes https://github.com/vim/vim/issues/9510)
author Bram Moolenaar <Bram@vim.org>
date Wed, 12 Jan 2022 14:00:06 +0100
parents 6a4fc2e6e6eb
children 3956e3bb47ec
line wrap: on
line diff
--- a/src/userfunc.c
+++ b/src/userfunc.c
@@ -3744,6 +3744,30 @@ trans_function_name(
 	if (name == lv.ll_exp_name)
 	    name = NULL;
     }
+    else if (lv.ll_sid > 0)
+    {
+	scriptitem_T	*si = SCRIPT_ITEM(lv.ll_sid);
+	int		cc = *lv.ll_name_end;
+
+	// function in another script.  Prefix <SNR>99_ or the autoload prefix.
+	*lv.ll_name_end = NUL;
+	if (si->sn_autoload_prefix != NULL)
+	{
+	    name = concat_str(si->sn_autoload_prefix, lv.ll_name);
+	}
+	else
+	{
+	    sid_buf[0] = K_SPECIAL;
+	    sid_buf[1] = KS_EXTRA;
+	    sid_buf[2] = (int)KE_SNR;
+	    vim_snprintf((char *)sid_buf + 3, sizeof(sid_buf) - 3,
+					    "%ld_", (long)current_sctx.sc_sid);
+	    name = concat_str(sid_buf, lv.ll_name);
+	}
+	*lv.ll_name_end = cc;
+	*pp = end;
+	goto theend;
+    }
     else if (!(flags & TFN_NO_DEREF))
     {
 	len = (int)(end - *pp);