diff options
author | nyamatongwe <unknown> | 2002-03-26 00:56:20 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2002-03-26 00:56:20 +0000 |
commit | a811ade7d986bfef8d7070ad89314bdf4ab2e605 (patch) | |
tree | 745445917070e1298a19e9f80f9b9376f7d8c7ba /include/SciLexer.h | |
parent | a9a41bd8008b08cf028fe3c4fef01ac9025dfcbb (diff) | |
download | scintilla-mirror-a811ade7d986bfef8d7070ad89314bdf4ab2e605.tar.gz |
Made symbols for the lexical states of the diff lexer. Recognise '***' as the same as '+++' rather than like '!'.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index fb77a702e..0022606c2 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -281,6 +281,13 @@ #define SCE_MAKE_OPERATOR 4 #define SCE_MAKE_TARGET 5 #define SCE_MAKE_IDEOL 9 +#define SCE_DIFF_DEFAULT 0 +#define SCE_DIFF_COMMENT 1 +#define SCE_DIFF_COMMAND 2 +#define SCE_DIFF_HEADER 3 +#define SCE_DIFF_POSITION 4 +#define SCE_DIFF_DELETED 5 +#define SCE_DIFF_ADDED 6 #define SCE_CONF_DEFAULT 0 #define SCE_CONF_COMMENT 1 #define SCE_CONF_NUMBER 2 |