diff options
author | nyamatongwe <devnull@localhost> | 2009-05-27 00:43:34 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-05-27 00:43:34 +0000 |
commit | cbff9168e67c6e8a94bd5373c9f907dd9607f70c (patch) | |
tree | fa25390d9172de53ac808221096000ddd67ec113 /include | |
parent | 7fb299e3e7e46dc7204136d2bc7cc85125c7dbe4 (diff) | |
download | scintilla-mirror-cbff9168e67c6e8a94bd5373c9f907dd9607f70c.tar.gz |
Updated D lexer from maXmo.
Feature Request #2793782.
Supports more forms of strings and numbers and has more keyword lists.
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 7 | ||||
-rw-r--r-- | include/Scintilla.iface | 7 |
2 files changed, 6 insertions, 8 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index f136d9931..d858b64ce 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -155,7 +155,7 @@ #define SCE_D_NUMBER 5 #define SCE_D_WORD 6 #define SCE_D_WORD2 7 -#define SCE_D_WORD3 8 +#define SCE_D_WORD5 8 #define SCE_D_TYPEDEF 9 #define SCE_D_STRING 10 #define SCE_D_STRINGEOL 11 @@ -167,9 +167,8 @@ #define SCE_D_COMMENTDOCKEYWORDERROR 17 #define SCE_D_STRINGB 18 #define SCE_D_STRINGR 19 -#define SCE_D_WORD5 20 -#define SCE_D_WORD6 21 -#define SCE_D_WORD7 22 +#define SCE_D_WORD6 20 +#define SCE_D_WORD7 21 #define SCE_TCL_DEFAULT 0 #define SCE_TCL_COMMENT 1 #define SCE_TCL_COMMENTLINE 2 diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 8f71571e7..76c31f7be 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2179,7 +2179,7 @@ val SCE_D_COMMENTNESTED=4 val SCE_D_NUMBER=5 val SCE_D_WORD=6 val SCE_D_WORD2=7 -val SCE_D_WORD3=8 +val SCE_D_WORD5=8 val SCE_D_TYPEDEF=9 val SCE_D_STRING=10 val SCE_D_STRINGEOL=11 @@ -2191,9 +2191,8 @@ val SCE_D_COMMENTDOCKEYWORD=16 val SCE_D_COMMENTDOCKEYWORDERROR=17 val SCE_D_STRINGB=18 val SCE_D_STRINGR=19 -val SCE_D_WORD5=20 -val SCE_D_WORD6=21 -val SCE_D_WORD7=22 +val SCE_D_WORD6=20 +val SCE_D_WORD7=21 # Lexical states for SCLEX_TCL lex TCL=SCLEX_TCL SCE_TCL_ val SCE_TCL_DEFAULT=0 |