0
0
mirror of https://github.com/vim/vim.git synced 2025-09-25 03:54:15 -04:00

patch 8.2.4526: Vim9: cannot set variables to a null value

Problem:    Vim9: cannot set variables to a null value.
Solution:   Add null_list, null_job, etc.
This commit is contained in:
Bram Moolenaar
2022-03-08 13:18:55 +00:00
parent 08238045e7
commit 8acb9cc620
16 changed files with 346 additions and 51 deletions

View File

@@ -1062,6 +1062,14 @@ static char *reserved[] = {
"true",
"false",
"null",
"null_blob",
"null_dict",
"null_function",
"null_list",
"null_partial",
"null_string",
"null_channel",
"null_job",
"this",
NULL
};