diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/SciLexer.h | 12 | ||||
-rw-r--r-- | include/Scintilla.iface | 15 |
2 files changed, 27 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index c20c22b7b..b97bf2187 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -54,6 +54,7 @@ #define SCLEX_F77 37 #define SCLEX_CSS 38 #define SCLEX_POV 39 +#define SCLEX_LOUT 40 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -461,6 +462,17 @@ #define SCE_POV_IDENTIFIER 8 #define SCE_POV_BRACE 9 #define SCE_POV_WORD2 10 +#define SCE_LOUT_DEFAULT 0 +#define SCE_LOUT_COMMENT 1 +#define SCE_LOUT_NUMBER 2 +#define SCE_LOUT_WORD 3 +#define SCE_LOUT_WORD2 4 +#define SCE_LOUT_WORD3 5 +#define SCE_LOUT_WORD4 6 +#define SCE_LOUT_STRING 7 +#define SCE_LOUT_OPERATOR 8 +#define SCE_LOUT_IDENTIFIER 9 +#define SCE_LOUT_STRINGEOL 10 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 3b71a37a3..94c181379 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1574,6 +1574,7 @@ val SCLEX_FORTRAN=36 val SCLEX_F77=37 val SCLEX_CSS=38 val SCLEX_POV=39 +val SCLEX_LOUT=40 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a # value assigned in sequence from SCLEX_AUTOMATIC+1. @@ -2056,6 +2057,20 @@ val SCE_POV_OPERATOR=7 val SCE_POV_IDENTIFIER=8 val SCE_POV_BRACE=9 val SCE_POV_WORD2=10 +# Lexical states for SCLEX_LOUT +lex LOUT=SCLEX_LOUT SCE_LOUT_ +val SCE_LOUT_DEFAULT=0 +val SCE_LOUT_COMMENT=1 +val SCE_LOUT_NUMBER=2 +val SCE_LOUT_WORD=3 +val SCE_LOUT_WORD2=4 +val SCE_LOUT_WORD3=5 +val SCE_LOUT_WORD4=6 +val SCE_LOUT_STRING=7 +val SCE_LOUT_OPERATOR=8 +val SCE_LOUT_IDENTIFIER=9 +val SCE_LOUT_STRINGEOL=10 + # Events evt void StyleNeeded=2000(int position) |