mirror of
https://github.com/vim/vim.git
synced 2025-09-24 03:44:06 -04:00
patch 8.2.4662: no error for using out of range list index
Problem: No error for using out of range list index. Solution: Check list index at script level like in compiled function. (closes #10051)
This commit is contained in:
@@ -2632,6 +2632,7 @@ typedef enum {
|
||||
#define TFN_NO_DECL 0x20 // only used for GLV_NO_DECL
|
||||
#define TFN_COMPILING 0x40 // only used for GLV_COMPILING
|
||||
#define TFN_NEW_FUNC 0x80 // defining a new function
|
||||
#define TFN_ASSIGN_WITH_OP 0x100 // only for GLV_ASSIGN_WITH_OP
|
||||
|
||||
// Values for get_lval() flags argument:
|
||||
#define GLV_QUIET TFN_QUIET // no error messages
|
||||
@@ -2639,6 +2640,7 @@ typedef enum {
|
||||
#define GLV_READ_ONLY TFN_READ_ONLY // will not change the var
|
||||
#define GLV_NO_DECL TFN_NO_DECL // assignment without :var or :let
|
||||
#define GLV_COMPILING TFN_COMPILING // variable may be defined later
|
||||
#define GLV_ASSIGN_WITH_OP TFN_ASSIGN_WITH_OP // assignment with operator
|
||||
|
||||
#define DO_NOT_FREE_CNT 99999 // refcount for dict or list that should not
|
||||
// be freed.
|
||||
|
Reference in New Issue
Block a user