diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-03-08 13:18:55 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-03-08 13:18:55 +0000 |
commit | 8acb9cc6209768ca7ec75c9f7af8c389312ea8d6 (patch) | |
tree | 8a5f92b1b10f53f7a3f0e95ffbdcb519ce9ecb09 /src/evalvars.c | |
parent | 08238045e769fce2d5bf1e17167e26eafc3d72b8 (diff) | |
download | vim-git-8acb9cc6209768ca7ec75c9f7af8c389312ea8d6.tar.gz |
patch 8.2.4526: Vim9: cannot set variables to a null valuev8.2.4526
Problem: Vim9: cannot set variables to a null value.
Solution: Add null_list, null_job, etc.
Diffstat (limited to 'src/evalvars.c')
-rw-r--r-- | src/evalvars.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/evalvars.c b/src/evalvars.c index 44882cae2..4f7252c5c 100644 --- a/src/evalvars.c +++ b/src/evalvars.c @@ -999,6 +999,11 @@ ex_let_vars( listitem_T *item; typval_T ltv; + if (tv->v_type == VAR_VOID) + { + emsg(_(e_cannot_use_void_value)); + return FAIL; + } if (*arg != '[') { // ":let var = expr" or ":for var in list" |