diff options
author | nyamatongwe <unknown> | 2012-06-22 14:19:31 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2012-06-22 14:19:31 +1000 |
commit | 5f10d9cc3900adb0dd2cda15c2beba095028152d (patch) | |
tree | 4a87abff815473124a1dd0e0eb307d47b1ea2cd2 /include | |
parent | 17b3153f7f0124c892d1f6f174488c3eba23c950 (diff) | |
download | scintilla-mirror-5f10d9cc3900adb0dd2cda15c2beba095028152d.tar.gz |
Bug #3487406. New style SCE_C_PREPROCESSORCOMMENT for stream comments
inside preprocessor directives.
Includes code from Marko Njezic.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 1 | ||||
-rw-r--r-- | include/Scintilla.iface | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 7fc0719a0..57b5cf6e7 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -160,6 +160,7 @@ #define SCE_C_STRINGRAW 20 #define SCE_C_TRIPLEVERBATIM 21 #define SCE_C_HASHQUOTEDSTRING 22 +#define SCE_C_PREPROCESSORCOMMENT 23 #define SCE_D_DEFAULT 0 #define SCE_D_COMMENT 1 #define SCE_D_COMMENTLINE 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 24de70917..7d6588616 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2554,6 +2554,7 @@ val SCE_C_GLOBALCLASS=19 val SCE_C_STRINGRAW=20 val SCE_C_TRIPLEVERBATIM=21 val SCE_C_HASHQUOTEDSTRING=22 +val SCE_C_PREPROCESSORCOMMENT=23 # Lexical states for SCLEX_D lex D=SCLEX_D SCE_D_ val SCE_D_DEFAULT=0 |