diff options
author | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-16 19:48:57 -0500 |
---|---|---|
committer | Jan Edmund Lazo <jan.lazo@mail.utoronto.ca> | 2019-12-16 20:36:11 -0500 |
commit | 9e6ebed6f4c695cfa00710e003d606d5d720b542 (patch) | |
tree | 8fa9f30bd820a9237eb96df6e182b2f46a2c7a53 /src/nvim/eval.c | |
parent | fcd9105018828048a8460c109650f61545b489a0 (diff) | |
download | rneovim-9e6ebed6f4c695cfa00710e003d606d5d720b542.tar.gz rneovim-9e6ebed6f4c695cfa00710e003d606d5d720b542.tar.bz2 rneovim-9e6ebed6f4c695cfa00710e003d606d5d720b542.zip |
vim-patch:8.2.0013: not using a typedef for condstack
Problem: Not using a typedef for condstack.
Solution: Add a typedef.
https://github.com/vim/vim/commit/ddef129160ff0676e5da482071fb2fdc2988ac34
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r-- | src/nvim/eval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c index 4c76b1b2e8..902d68dcf9 100644 --- a/src/nvim/eval.c +++ b/src/nvim/eval.c @@ -23652,7 +23652,7 @@ void ex_return(exarg_T *eap) int do_return(exarg_T *eap, int reanimate, int is_cmd, void *rettv) { int idx; - struct condstack *cstack = eap->cstack; + cstack_T *const cstack = eap->cstack; if (reanimate) /* Undo the return. */ |