mirror of
https://github.com/neovim/neovim.git
synced 2025-09-19 01:38:16 +00:00
vim-patch:8.2.0013: not using a typedef for condstack
Problem: Not using a typedef for condstack.
Solution: Add a typedef.
ddef129160
This commit is contained in:
@@ -325,13 +325,13 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
|
||||
int count = 0; /* line number count */
|
||||
int did_inc = FALSE; /* incremented RedrawingDisabled */
|
||||
int retval = OK;
|
||||
struct condstack cstack; /* conditional stack */
|
||||
garray_T lines_ga; /* keep lines for ":while"/":for" */
|
||||
int current_line = 0; /* active line in lines_ga */
|
||||
char_u *fname = NULL; /* function or script name */
|
||||
linenr_T *breakpoint = NULL; /* ptr to breakpoint field in cookie */
|
||||
int *dbg_tick = NULL; /* ptr to dbg_tick field in cookie */
|
||||
struct dbg_stuff debug_saved; /* saved things for debug mode */
|
||||
cstack_T cstack; // conditional stack
|
||||
garray_T lines_ga; // keep lines for ":while"/":for"
|
||||
int current_line = 0; // active line in lines_ga
|
||||
char_u *fname = NULL; // function or script name
|
||||
linenr_T *breakpoint = NULL; // ptr to breakpoint field in cookie
|
||||
int *dbg_tick = NULL; // ptr to dbg_tick field in cookie
|
||||
struct dbg_stuff debug_saved; // saved things for debug mode
|
||||
int initial_trylevel;
|
||||
struct msglist **saved_msg_list = NULL;
|
||||
struct msglist *private_msg_list;
|
||||
@@ -361,7 +361,7 @@ int do_cmdline(char_u *cmdline, LineGetter fgetline,
|
||||
EMSG(_("E169: Command too recursive"));
|
||||
// When converting to an exception, we do not include the command name
|
||||
// since this is not an error of the specific command.
|
||||
do_errthrow((struct condstack *)NULL, (char_u *)NULL);
|
||||
do_errthrow((cstack_T *)NULL, (char_u *)NULL);
|
||||
msg_list = saved_msg_list;
|
||||
return FAIL;
|
||||
}
|
||||
@@ -1545,7 +1545,7 @@ static bool parse_one_cmd(
|
||||
*/
|
||||
static char_u * do_one_cmd(char_u **cmdlinep,
|
||||
int flags,
|
||||
struct condstack *cstack,
|
||||
cstack_T *cstack,
|
||||
LineGetter fgetline,
|
||||
void *cookie /* argument for fgetline() */
|
||||
)
|
||||
|
Reference in New Issue
Block a user