mirror of
https://github.com/vim/vim.git
synced 2025-10-10 06:24:10 -04:00
patch 8.2.0173: build fails with old compiler
Problem: Build fails with old compiler. Solution: Do not use anonymous unions. (John Marriott)
This commit is contained in:
@@ -3044,7 +3044,7 @@ vim_to_mzscheme_impl(typval_T *vim_value, int depth, Scheme_Hash_Table *visited)
|
||||
MZ_GC_VAR_IN_REG(0, obj);
|
||||
MZ_GC_REG();
|
||||
|
||||
curr = list->lv_last;
|
||||
curr = list->lv_u.mat.lv_last;
|
||||
obj = vim_to_mzscheme_impl(&curr->li_tv, depth + 1, visited);
|
||||
result = scheme_make_pair(obj, scheme_null);
|
||||
MZ_GC_CHECK();
|
||||
|
Reference in New Issue
Block a user