diff options
author | nyamatongwe <unknown> | 2003-09-21 00:49:31 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2003-09-21 00:49:31 +0000 |
commit | 71477efca08db7f62728825a6e1023e571a78af7 (patch) | |
tree | f0429c47d28175842852cc33349b009b3db267f6 | |
parent | 8e96fa55da68ee49bcef61ad05ea663c1ba5d7a9 (diff) | |
download | scintilla-mirror-71477efca08db7f62728825a6e1023e571a78af7.tar.gz |
Added MPT lexer.
-rw-r--r-- | include/SciLexer.h | 8 | ||||
-rw-r--r-- | include/Scintilla.iface | 13 |
2 files changed, 19 insertions, 2 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 0e93d13c0..7e98813cf 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -61,6 +61,7 @@ #define SCLEX_MMIXAL 44 #define SCLEX_CLW 45 #define SCLEX_CLWNOCASE 46 +#define SCLEX_LOT 47 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -562,6 +563,13 @@ #define SCE_CLW_ATTRIBUTE 12 #define SCE_CLW_STANDARD_EQUATE 13 #define SCE_CLW_ERROR 14 +#define SCE_LOT_DEFAULT 0 +#define SCE_LOT_HEADER 1 +#define SCE_LOT_BREAK 2 +#define SCE_LOT_SET 3 +#define SCE_LOT_PASS 4 +#define SCE_LOT_FAIL 5 +#define SCE_LOT_ABORT 6 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif diff --git a/include/Scintilla.iface b/include/Scintilla.iface index 4fa9fd753..b590f69a8 100644 --- a/include/Scintilla.iface +++ b/include/Scintilla.iface @@ -1593,7 +1593,8 @@ val SCLEX_PS=42 val SCLEX_NSIS=43 val SCLEX_MMIXAL=44 val SCLEX_CLW=45 -val SCLEX_CLWNOCASE=46 +val SCLEX_CLWNOCASE=46 +val SCLEX_LOT=47 # When a lexer specifies its language as SCLEX_AUTOMATIC it receives a # value assigned in sequence from SCLEX_AUTOMATIC+1. @@ -2181,7 +2182,15 @@ val SCE_CLW_BUILTIN_PROCEDURES_FUNCTION=10 val SCE_CLW_STRUCTURE_DATA_TYPE=11 val SCE_CLW_ATTRIBUTE=12 val SCE_CLW_STANDARD_EQUATE=13 -val SCE_CLW_ERROR=14 +val SCE_CLW_ERROR=14 +# Lexical states for SCLEX_LOT +val SCE_LOT_DEFAULT=0 +val SCE_LOT_HEADER=1 +val SCE_LOT_BREAK=2 +val SCE_LOT_SET=3 +val SCE_LOT_PASS=4 +val SCE_LOT_FAIL=5 +val SCE_LOT_ABORT=6 # Events |