summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-03-13 21:14:18 +0100
committerBram Moolenaar <Bram@vim.org>2021-03-13 21:14:18 +0100
commitedba70703b6eaee3365ddfd82e4ba56ee08486f8 (patch)
tree781540888b291e6d6633fad3a8947a73ae3327b8
parent6508880d6ca98486efb9ab947c651a2b73a6e795 (diff)
downloadvim-git-edba70703b6eaee3365ddfd82e4ba56ee08486f8.tar.gz
patch 8.2.2599: build failurev8.2.2599
Problem: Build failure. Solution: Add missing change.
-rw-r--r--src/version.c2
-rw-r--r--src/vim9compile.c3
2 files changed, 4 insertions, 1 deletions
diff --git a/src/version.c b/src/version.c
index 78eb6341d..9a4fa4680 100644
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 2599,
+/**/
2598,
/**/
2597,
diff --git a/src/vim9compile.c b/src/vim9compile.c
index c49c49984..1bb30ca0c 100644
--- a/src/vim9compile.c
+++ b/src/vim9compile.c
@@ -2645,7 +2645,8 @@ compile_load_scriptvar(
cc = *p;
*p = NUL;
- idx = find_exported(import->imp_sid, exp_name, &ufunc, &type, cctx);
+ idx = find_exported(import->imp_sid, exp_name, &ufunc, &type,
+ cctx, TRUE);
*p = cc;
p = skipwhite(p);