diff options
author | nyamatongwe <devnull@localhost> | 2009-06-16 12:45:59 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2009-06-16 12:45:59 +0000 |
commit | aac95a5cd938ccf084358fcd3dbea3ccd0d19942 (patch) | |
tree | c52420354843be4ddd556c471756211d467b456c | |
parent | f83529ee83a074eab642f6e294b2443d1fb4dda5 (diff) | |
download | scintilla-mirror-aac95a5cd938ccf084358fcd3dbea3ccd0d19942.tar.gz |
Updated set of states for D language.
FR #2793782
-rw-r--r-- | include/SciLexer.h | 7 | ||||
-rw-r--r-- | include/Scintilla.iface | 7 |
2 files changed, 8 insertions, 6 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index d858b64ce..f136d9931 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_WORD5 8 +#define SCE_D_WORD3 8 #define SCE_D_TYPEDEF 9 #define SCE_D_STRING 10 #define SCE_D_STRINGEOL 11 @@ -167,8 +167,9 @@ #define SCE_D_COMMENTDOCKEYWORDERROR 17 #define SCE_D_STRINGB 18 #define SCE_D_STRINGR 19 -#define SCE_D_WORD6 20 -#define SCE_D_WORD7 21 +#define SCE_D_WORD5 20 +#define SCE_D_WORD6 21 +#define SCE_D_WORD7 22 #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 d2e4a6f9a..66ad42e8a 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -2191,7 +2191,7 @@ val SCE_D_COMMENTNESTED=4 val SCE_D_NUMBER=5 val SCE_D_WORD=6 val SCE_D_WORD2=7 -val SCE_D_WORD5=8 +val SCE_D_WORD3=8 val SCE_D_TYPEDEF=9 val SCE_D_STRING=10 val SCE_D_STRINGEOL=11 @@ -2203,8 +2203,9 @@ val SCE_D_COMMENTDOCKEYWORD=16 val SCE_D_COMMENTDOCKEYWORDERROR=17 val SCE_D_STRINGB=18 val SCE_D_STRINGR=19 -val SCE_D_WORD6=20 -val SCE_D_WORD7=21 +val SCE_D_WORD5=20 +val SCE_D_WORD6=21 +val SCE_D_WORD7=22 # Lexical states for SCLEX_TCL lex TCL=SCLEX_TCL SCE_TCL_ val SCE_TCL_DEFAULT=0 |