diff options
author | Bram Moolenaar <Bram@vim.org> | 2022-01-04 15:54:38 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2022-01-04 15:54:38 +0000 |
commit | 10d6f18b2f9090d19dd884827c4be59a20b446bf (patch) | |
tree | c6f52c09d8961e851e5728c88c8f6bf11cf8cb73 /src/structs.h | |
parent | 078a46161e8b1b30bf306d6c1f4f0af7c616a989 (diff) | |
download | vim-git-10d6f18b2f9090d19dd884827c4be59a20b446bf.tar.gz |
patch 8.2.3997: Vim9: not enough testing for extend() and map()v8.2.3997
Problem: Vim9: not enough testing for extend() and map().
Solution: Add more test cases. Fix uncovered problems. Remove unused type
fields.
Diffstat (limited to 'src/structs.h')
-rw-r--r-- | src/structs.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/structs.h b/src/structs.h index 7d040eb6f..2da16bf6e 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1513,7 +1513,6 @@ struct listvar_S } mat; } lv_u; type_T *lv_type; // current type, allocated by alloc_type() - type_T *lv_decl_type; // declared type, allocated by alloc_type() list_T *lv_copylist; // copied list used by deepcopy() list_T *lv_used_next; // next list in used lists list list_T *lv_used_prev; // previous list in used lists list @@ -1578,7 +1577,6 @@ struct dictvar_S int dv_copyID; // ID used by deepcopy() hashtab_T dv_hashtab; // hashtab that refers to the items type_T *dv_type; // current type, allocated by alloc_type() - type_T *dv_decl_type; // declared type, allocated by alloc_type() dict_T *dv_copydict; // copied dict used by deepcopy() dict_T *dv_used_next; // next dict in used dicts list dict_T *dv_used_prev; // previous dict in used dicts list |