]> granicus.if.org Git - vim/commitdiff
patch 8.2.2599: build failure v8.2.2599
authorBram Moolenaar <Bram@vim.org>
Sat, 13 Mar 2021 20:14:18 +0000 (21:14 +0100)
committerBram Moolenaar <Bram@vim.org>
Sat, 13 Mar 2021 20:14:18 +0000 (21:14 +0100)
Problem:    Build failure.
Solution:   Add missing change.

src/version.c
src/vim9compile.c

index 78eb6341d6a878d3565dbeaa443ad07cef49ff1f..9a4fa46808d522528042ebf9ea5159e901e6deb1 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    2599,
 /**/
     2598,
 /**/
index c49c499841f55750a48d77e44624608096fd1450..1bb30ca0cf1dfbb7cd514e62aa95c0b630f4c0e8 100644 (file)
@@ -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);