summaryrefslogtreecommitdiffstats
path: root/src/proto/vim9compile.pro
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2021-04-07 21:21:13 +0200
committerBram Moolenaar <Bram@vim.org>2021-04-07 21:21:13 +0200
commit15e5e53ef29a457126f7c699931ab5842431f2ea (patch)
tree53630cc1e055063999dd34c68d8c77fbd03105ea /src/proto/vim9compile.pro
parent130cbfc31235c6cb52ffe718ea0a5bb50fbbc9fd (diff)
patch 8.2.2734: Vim9: cannot use legacy script-local var from :def functionv8.2.2734
Problem: Vim9: cannot use legacy script-local var from :def function. Solution: Do not insist on using "s:" prefix. (closes #8076)
Diffstat (limited to 'src/proto/vim9compile.pro')
-rw-r--r--src/proto/vim9compile.pro1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/proto/vim9compile.pro b/src/proto/vim9compile.pro
index 05d399867b..39624aef19 100644
--- a/src/proto/vim9compile.pro
+++ b/src/proto/vim9compile.pro
@@ -1,5 +1,4 @@
/* vim9compile.c */
-int script_var_exists(char_u *name, size_t len, int vim9script, cctx_T *cctx);
int check_defined(char_u *p, size_t len, cctx_T *cctx, int is_arg);
int check_compare_types(exprtype_T type, typval_T *tv1, typval_T *tv2);
int use_typecheck(type_T *actual, type_T *expected);