mirror of
https://github.com/vim/vim.git
synced 2025-09-23 03:43:49 -04:00
patch 9.1.0970: VMS: build errors on VMS architecture
Problem: VMS: build errors on VMS architecture Solution: define cellsize struct, use C89 to initialize lval_root_S struct (Zoltan Arpadffy) * define struct cellsize for VMS * ensures the code adheres to the C89 standard closes: #16328 Signed-off-by: Zoltan Arpadffy <zoltan.arpadffy@gmail.com> Signed-off-by: Christian Brabandt <cb@256bit.org>
This commit is contained in:
committed by
Christian Brabandt
parent
f2e08a1e54
commit
7b12ac3ad8
@@ -4425,9 +4425,10 @@ exec_instructions(ectx_T *ectx)
|
||||
// Stack has the local variable, argument the whole :lock
|
||||
// or :unlock command, like ISN_EXEC.
|
||||
--ectx->ec_stack.ga_len;
|
||||
lval_root_T root = { .lr_tv = STACK_TV_BOT(0),
|
||||
.lr_cl_exec = iptr->isn_arg.lockunlock.lu_cl_exec,
|
||||
.lr_is_arg = iptr->isn_arg.lockunlock.lu_is_arg };
|
||||
lval_root_T root;
|
||||
root.lr_tv = STACK_TV_BOT(0);
|
||||
root.lr_cl_exec = iptr->isn_arg.lockunlock.lu_cl_exec;
|
||||
root.lr_is_arg = iptr->isn_arg.lockunlock.lu_is_arg;
|
||||
lval_root = &root;
|
||||
int res = exec_command(iptr,
|
||||
iptr->isn_arg.lockunlock.lu_string);
|
||||
|
Reference in New Issue
Block a user