From ddef129160ff0676e5da482071fb2fdc2988ac34 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Mon, 16 Dec 2019 17:10:33 +0100 Subject: patch 8.2.0013: not using a typedef for condstack Problem: Not using a typedef for condstack. Solution: Add a typedef. --- src/ex_cmds.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/ex_cmds.h') 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 -- cgit v1.2.1