comparison src/globals.h @ 25605:6f13d9ea0d04 v8.2.3339

patch 8.2.3339: Vim9: cannot lock a member in a local dict Commit: https://github.com/vim/vim/commit/aacc966c5d0ed91e33ed32b08f17cf4df3ca1394 Author: Bram Moolenaar <Bram@vim.org> Date: Fri Aug 13 19:40:51 2021 +0200 patch 8.2.3339: Vim9: cannot lock a member in a local dict Problem: Vim9: cannot lock a member in a local dict. Solution: Get the local dict from the stack and pass it to get_lval().
author Bram Moolenaar <Bram@vim.org>
date Fri, 13 Aug 2021 19:45:03 +0200
parents 4101d78f78e2
children f8bcd21e6e24
comparison
equal deleted inserted replaced
25604:5ad1d3061d62 25605:6f13d9ea0d04
1833 EXTERN int did_add_timer INIT(= FALSE); 1833 EXTERN int did_add_timer INIT(= FALSE);
1834 EXTERN int timer_busy INIT(= 0); // when timer is inside vgetc() then > 0 1834 EXTERN int timer_busy INIT(= 0); // when timer is inside vgetc() then > 0
1835 #endif 1835 #endif
1836 #ifdef FEAT_EVAL 1836 #ifdef FEAT_EVAL
1837 EXTERN int input_busy INIT(= 0); // when inside get_user_input() then > 0 1837 EXTERN int input_busy INIT(= 0); // when inside get_user_input() then > 0
1838
1839 EXTERN typval_T *lval_root INIT(= NULL);
1838 #endif 1840 #endif
1839 1841
1840 #ifdef FEAT_BEVAL_TERM 1842 #ifdef FEAT_BEVAL_TERM
1841 EXTERN int bevalexpr_due_set INIT(= FALSE); 1843 EXTERN int bevalexpr_due_set INIT(= FALSE);
1842 EXTERN proftime_T bevalexpr_due; 1844 EXTERN proftime_T bevalexpr_due;