summaryrefslogtreecommitdiffstats
path: root/src/proto/evalvars.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-03-13 20:57:19 +0100
committerBram Moolenaar <Bram@vim.org>2021-03-13 20:57:19 +0100
commitcb4e80fab9b1ee67249bde4f784526f900cda70c (patch)
treef2d80bc69d80259f4ae2b8bb2ac501fac2ea00b0 /src/proto/evalvars.pro
parent41cd80335cf318c15c8b0139f53ab5e8a02561ef (diff)
patch 8.2.2597: Vim9: "import * as" does not work at script levelv8.2.2597
Problem: Vim9: "import * as" does not work at script level. Solution: Implement using an imported namespace.
Diffstat (limited to 'src/proto/evalvars.pro')
-rw-r--r--src/proto/evalvars.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/proto/evalvars.pro b/src/proto/evalvars.pro
index bd2c6879ff..1094d45630 100644
--- a/src/proto/evalvars.pro
+++ b/src/proto/evalvars.pro
@@ -56,7 +56,7 @@ void set_reg_var(int c);
char_u *v_exception(char_u *oldval);
char_u *v_throwpoint(char_u *oldval);
char_u *set_cmdarg(exarg_T *eap, char_u *oldarg);
-int eval_variable(char_u *name, int len, typval_T *rettv, dictitem_T **dip, int verbose, int no_autoload);
+int eval_variable(char_u *name, int len, typval_T *rettv, dictitem_T **dip, int flags);
void check_vars(char_u *name, int len);
dictitem_T *find_var(char_u *name, hashtab_T **htp, int no_autoload);
dictitem_T *find_var_in_ht(hashtab_T *ht, int htname, char_u *varname, int no_autoload);