diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/syntax_defs.h | 6 | ||||
-rw-r--r-- | src/nvim/vim.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/nvim/syntax_defs.h b/src/nvim/syntax_defs.h index f2b9d3e336..d8ef007ffc 100644 --- a/src/nvim/syntax_defs.h +++ b/src/nvim/syntax_defs.h @@ -3,6 +3,12 @@ #include "nvim/regexp_defs.h" +# define SST_MIN_ENTRIES 150 /* minimal size for state stack array */ +# define SST_MAX_ENTRIES 1000 /* maximal size for state stack array */ +# define SST_FIX_STATES 7 /* size of sst_stack[]. */ +# define SST_DIST 16 /* normal distance between entries */ +# define SST_INVALID (synstate_T *)-1 /* invalid syn_state pointer */ + /* struct passed to in_id_list() */ struct sp_syn { int inc_tag; /* ":syn include" unique tag */ diff --git a/src/nvim/vim.h b/src/nvim/vim.h index 486800d0c7..412e3730ea 100644 --- a/src/nvim/vim.h +++ b/src/nvim/vim.h @@ -253,12 +253,6 @@ enum { # define gen_expand_wildcards mch_expand_wildcards #endif -# define SST_MIN_ENTRIES 150 /* minimal size for state stack array */ -# define SST_MAX_ENTRIES 1000 /* maximal size for state stack array */ -# define SST_FIX_STATES 7 /* size of sst_stack[]. */ -# define SST_DIST 16 /* normal distance between entries */ -# define SST_INVALID (synstate_T *)-1 /* invalid syn_state pointer */ - # define HL_CONTAINED 0x01 /* not used on toplevel */ # define HL_TRANSP 0x02 /* has no highlighting */ # define HL_ONELINE 0x04 /* match within one line only */ |