From eb7aa76b1373b69aed85bce3392ff3f564d4d73b Mon Sep 17 00:00:00 2001 From: Jan Edmund Lazo Date: Thu, 26 Jul 2018 16:33:01 -0400 Subject: syntax: current_next_list is int16_t* --- src/nvim/syntax.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/nvim/syntax.c b/src/nvim/syntax.c index 062a79dbd3..9f36f1ce92 100644 --- a/src/nvim/syntax.c +++ b/src/nvim/syntax.c @@ -364,9 +364,9 @@ static int current_state_stored = 0; /* TRUE if stored current state static int current_finished = 0; /* current line has been finished */ static garray_T current_state /* current stack of state_items */ = GA_EMPTY_INIT_VALUE; -static short *current_next_list = NULL; /* when non-zero, nextgroup list */ -static int current_next_flags = 0; /* flags for current_next_list */ -static int current_line_id = 0; /* unique number for current line */ +static int16_t *current_next_list = NULL; // when non-zero, nextgroup list +static int current_next_flags = 0; // flags for current_next_list +static int current_line_id = 0; // unique number for current line #define CUR_STATE(idx) ((stateitem_T *)(current_state.ga_data))[idx] -- cgit