summaryrefslogtreecommitdiff
path: root/src/ex_cmds.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2019-12-16 17:10:33 +0100
committerBram Moolenaar <Bram@vim.org>2019-12-16 17:10:33 +0100
commitddef129160ff0676e5da482071fb2fdc2988ac34 (patch)
tree8a7e0327a604dda5257739139ef271b587a345e9 /src/ex_cmds.h
parent559b9c68fe550f3af63d42e0838622aab1ceb1b3 (diff)
downloadvim-git-ddef129160ff0676e5da482071fb2fdc2988ac34.tar.gz
patch 8.2.0013: not using a typedef for condstackv8.2.0013
Problem: Not using a typedef for condstack. Solution: Add a typedef.
Diffstat (limited to 'src/ex_cmds.h')
-rw-r--r--src/ex_cmds.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ex_cmds.h b/src/ex_cmds.h
index 983378ccc..14b43bda4 100644
--- a/src/ex_cmds.h
+++ b/src/ex_cmds.h
@@ -1841,7 +1841,7 @@ struct exarg
char_u *(*getline)(int, void *, int, int);
void *cookie; // argument for getline()
#ifdef FEAT_EVAL
- struct condstack *cstack; // condition stack for ":if" etc.
+ cstack_T *cstack; // condition stack for ":if" etc.
#endif
long verbose_save; // saved value of p_verbose
int save_msg_silent; // saved value of msg_silent