0
0
mirror of https://github.com/vim/vim.git synced 2025-09-24 03:44:06 -04:00

patch 8.2.3303: some structures could be smaller

Problem:    Some structures could be smaller.
Solution:   Rearrange members to reduce size. (Dominique Pellé, closes #8725)
This commit is contained in:
Dominique Pelle
2021-08-07 12:44:41 +02:00
committed by Bram Moolenaar
parent d57a6bd98c
commit 3276f5846f
4 changed files with 14 additions and 12 deletions

View File

@@ -85,8 +85,8 @@ struct ectx_S {
garray_T ec_trystack; // stack of trycmd_T values
int ec_dfunc_idx; // current function index
isn_T *ec_instr; // array with instructions
int ec_dfunc_idx; // current function index
int ec_iidx; // index in ec_instr: instruction to execute
garray_T ec_funcrefs; // partials that might be a closure