aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-26 16:33:01 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-29 07:51:51 -0400
commiteb7aa76b1373b69aed85bce3392ff3f564d4d73b (patch)
treed75a88ea17be1a2df6e94e1cf33b042ae275d22d
parent095ddcb548e31e3554b86f58421d934b3c1014f0 (diff)
downloadrneovim-eb7aa76b1373b69aed85bce3392ff3f564d4d73b.tar.gz
rneovim-eb7aa76b1373b69aed85bce3392ff3f564d4d73b.tar.bz2
rneovim-eb7aa76b1373b69aed85bce3392ff3f564d4d73b.zip
syntax: current_next_list is int16_t*
-rw-r--r--src/nvim/syntax.c6
1 files changed, 3 insertions, 3 deletions
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]