aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-26 16:40:05 -0400
committerJan Edmund Lazo <janedmundlazo@hotmail.com>2018-07-29 07:51:51 -0400
commit2a7047b77cc5814fcd2d3107e4cfe2a56ad1b7c8 (patch)
treed267e10fe6c3f6dab7d0766433b2e4730c7513d2
parenteb7aa76b1373b69aed85bce3392ff3f564d4d73b (diff)
downloadrneovim-2a7047b77cc5814fcd2d3107e4cfe2a56ad1b7c8.tar.gz
rneovim-2a7047b77cc5814fcd2d3107e4cfe2a56ad1b7c8.tar.bz2
rneovim-2a7047b77cc5814fcd2d3107e4cfe2a56ad1b7c8.zip
syntax: syn_state.sst_next_list is int16_t*
-rw-r--r--src/nvim/syntax_defs.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/nvim/syntax_defs.h b/src/nvim/syntax_defs.h
index 18518a6b4c..71ebd8b2f0 100644
--- a/src/nvim/syntax_defs.h
+++ b/src/nvim/syntax_defs.h
@@ -59,13 +59,13 @@ struct syn_state {
bufstate_T sst_stack[SST_FIX_STATES]; /* short state stack */
garray_T sst_ga; /* growarray for long state stack */
} sst_union;
- int sst_next_flags; /* flags for sst_next_list */
- int sst_stacksize; /* number of states on the stack */
- short *sst_next_list; /* "nextgroup" list in this state
- * (this is a copy, don't free it! */
- disptick_T sst_tick; /* tick when last displayed */
- linenr_T sst_change_lnum; /* when non-zero, change in this line
- * may have made the state invalid */
+ int sst_next_flags; // flags for sst_next_list
+ int sst_stacksize; // number of states on the stack
+ int16_t *sst_next_list; // "nextgroup" list in this state
+ // (this is a copy, don't free it!
+ disptick_T sst_tick; // tick when last displayed
+ linenr_T sst_change_lnum; // when non-zero, change in this line
+ // may have made the state invalid
};
#endif // NVIM_SYNTAX_DEFS_H