summaryrefslogtreecommitdiff
path: root/src/structs.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-04 15:54:38 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-04 15:54:38 +0000
commit10d6f18b2f9090d19dd884827c4be59a20b446bf (patch)
treec6f52c09d8961e851e5728c88c8f6bf11cf8cb73 /src/structs.h
parent078a46161e8b1b30bf306d6c1f4f0af7c616a989 (diff)
downloadvim-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.h2
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