0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 9.0.1625: "super" is not considered a reserved name

Problem:    "super" is not considered a reserved name.
Solution:   Add "super" to the list of reserved names. (closes #12515)
This commit is contained in:
Bram Moolenaar
2023-06-10 19:00:12 +01:00
parent 5ca05fa59e
commit ce723f3918
4 changed files with 31 additions and 5 deletions

View File

@@ -1122,6 +1122,7 @@ static char *reserved[] = {
"null_string",
"null_channel",
"null_job",
"super",
"this",
NULL
};