0
0
mirror of https://github.com/vim/vim.git synced 2025-09-27 04:14:06 -04:00

patch 8.2.3871: list.c contains code for dict and blob

Problem:    List.c contains code for dict and blob.
Solution:   Refactor to put code where it belongs. (Yegappan Lakshmanan,
            closes #9386)
This commit is contained in:
Yegappan Lakshmanan
2021-12-22 18:19:26 +00:00
committed by Bram Moolenaar
parent 1aeccdb464
commit f973eeb491
13 changed files with 976 additions and 873 deletions

View File

@@ -4492,3 +4492,11 @@ typedef struct {
int sve_did_save;
hashtab_T sve_hashtab;
} save_v_event_T;
// Enum used by filter(), map() and mapnew()
typedef enum {
FILTERMAP_FILTER,
FILTERMAP_MAP,
FILTERMAP_MAPNEW
} filtermap_T;