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 | 6744d7c705dff026bd80c193c5a18dcbb92f3508 (patch) | |
tree | 5151f5a9dbb7862a3607f3761ef48f152aeacd61 /include/SciLexer.h | |
parent | 896e9b2579b3dd632b44474227ec762a8be6160e (diff) | |
download | scintilla-mirror-6744d7c705dff026bd80c193c5a18dcbb92f3508.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/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 1 |
1 files changed, 1 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 |