mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 8.2.0111: VAR_SPECIAL is also used for booleans
Problem: VAR_SPECIAL is also used for booleans. Solution: Add VAR_BOOL for better type checking.
This commit is contained in:
@@ -1313,7 +1313,8 @@ typedef enum
|
||||
VAR_LIST, // "v_list" is used
|
||||
VAR_DICT, // "v_dict" is used
|
||||
VAR_FLOAT, // "v_float" is used
|
||||
VAR_SPECIAL, // "v_number" is used
|
||||
VAR_BOOL, // "v_number" is VVAL_FALSE or VVAL_TRUE
|
||||
VAR_SPECIAL, // "v_number" is VVAL_NONE or VVAL_NULL
|
||||
VAR_JOB, // "v_job" is used
|
||||
VAR_CHANNEL, // "v_channel" is used
|
||||
VAR_BLOB, // "v_blob" is used
|
||||
|
Reference in New Issue
Block a user