diff options
author | Brandon Coleman <metrix1978@gmail.com> | 2014-05-28 08:49:12 -0500 |
---|---|---|
committer | Brandon Coleman <metrix1978@gmail.com> | 2014-06-12 01:20:36 -0500 |
commit | 7cdbca77899b8bb09c7a0a4c874c06021543c986 (patch) | |
tree | eb9d2a1feed5443308121a62371835e993577d6b | |
parent | eade8e283e70db44cbebe72e10b600d3cf6213e8 (diff) | |
download | rneovim-7cdbca77899b8bb09c7a0a4c874c06021543c986.tar.gz rneovim-7cdbca77899b8bb09c7a0a4c874c06021543c986.tar.bz2 rneovim-7cdbca77899b8bb09c7a0a4c874c06021543c986.zip |
move SST_* defines to syntax_defs
-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 */ |