diff options
author | kudah <kudahkukarek@gmail.com> | 2013-04-21 15:01:42 +0300 |
---|---|---|
committer | kudah <kudahkukarek@gmail.com> | 2013-04-21 15:01:42 +0300 |
commit | c6da50cd62e0af2733d4be1199d02888b45c472c (patch) | |
tree | c65ba8e96b606c39c9128ef9529c1bb7078b1d38 /include | |
parent | bcad218ee669a93e4957971f670a31a8ac0a6735 (diff) | |
download | scintilla-mirror-c6da50cd62e0af2733d4be1199d02888b45c472c.tar.gz |
* Fixed a bug when a dashes-only comment double-counted a line and could hang the editor
* Comments inside pragmas are now highlighted
* Reserved operators are now highlighted
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 2bf4239d8..ef92c9433 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -1023,6 +1023,7 @@ #define SCE_HA_PRAGMA 17 #define SCE_HA_PREPROCESSOR 18 #define SCE_HA_STRINGEOL 19 +#define SCE_HA_RESERVED_OPERATOR 20 #define SCE_T3_DEFAULT 0 #define SCE_T3_X_DEFAULT 1 #define SCE_T3_PREPROCESSOR 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 862a6e3a0..f98cbdff4 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -3613,6 +3613,7 @@ val SCE_HA_COMMENTBLOCK3=16 val SCE_HA_PRAGMA=17 val SCE_HA_PREPROCESSOR=18 val SCE_HA_STRINGEOL=19 +val SCE_HA_RESERVED_OPERATOR=20 # Lexical states of SCLEX_TADS3 lex TADS3=SCLEX_TADS3 SCE_T3_ val SCE_T3_DEFAULT=0 |