summaryrefslogtreecommitdiffstats
path: root/src/globals.h
diff options
context:
space:
mode:
authorErnie Rael <errael@raelity.com>2023-10-04 20:16:22 +0200
committerChristian Brabandt <cb@256bit.org>2023-10-04 20:16:22 +0200
commit64885645e76b301a6c34fe762c4e29c7a0f63881 (patch)
tree2fe2d6325cbbdc1812da80226784060485afd939 /src/globals.h
parent0583491277dea9d14e000051c26405b90d839072 (diff)
patch 9.0.1982: vim9: clean up from v9.0.1955v9.0.1982
Problem: vim9: clean up from v9.0.1955 Solution: Fix a few remaining issues, improve error message - Use `cl_exec`, the executing class, to check permissions in `get_lval()`. - Handle lockvar of script variable from class. - Add 'in class "Xxx"' to e_cannot_access_private_variable_str. closes: #13222 Signed-off-by: Christian Brabandt <cb@256bit.org> Co-authored-by: Ernie Rael <errael@raelity.com>
Diffstat (limited to 'src/globals.h')
-rw-r--r--src/globals.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/globals.h b/src/globals.h
index 993783957f..d54e311837 100644
--- a/src/globals.h
+++ b/src/globals.h
@@ -1953,8 +1953,7 @@ EXTERN int timer_busy INIT(= 0); // when timer is inside vgetc() then > 0
#ifdef FEAT_EVAL
EXTERN int input_busy INIT(= 0); // when inside get_user_input() then > 0
-EXTERN typval_T *lval_root INIT(= NULL);
-EXTERN int lval_root_is_arg INIT(= 0);
+EXTERN lval_root_T *lval_root INIT(= NULL);
#endif
#ifdef FEAT_BEVAL_TERM