diff options
author | nyamatongwe <devnull@localhost> | 2004-03-01 10:01:02 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2004-03-01 10:01:02 +0000 |
commit | 4380ab3d8c20ac5bc1cacd88d73d4f1156363d4c (patch) | |
tree | 7f398add2cfa80b4c53229ce4fb30994d593c6e8 /include/SciLexer.h | |
parent | c02fb4a4391876d5f86bfcf3145a47ffc6c995bc (diff) | |
download | scintilla-mirror-4380ab3d8c20ac5bc1cacd88d73d4f1156363d4c.tar.gz |
Specman language support.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 1ec63a5d8..c8a7e7503 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -73,6 +73,7 @@ #define SCLEX_VERILOG 56 #define SCLEX_KIX 57 #define SCLEX_GUI4CLI 58 +#define SCLEX_SPECMAN 59 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -691,6 +692,22 @@ #define SCE_GC_COMMAND 7 #define SCE_GC_STRING 8 #define SCE_GC_OPERATOR 9 +#define SCE_SN_DEFAULT 0 +#define SCE_SN_CODE 1 +#define SCE_SN_COMMENTLINE 2 +#define SCE_SN_COMMENTLINEBANG 3 +#define SCE_SN_NUMBER 4 +#define SCE_SN_WORD 5 +#define SCE_SN_STRING 6 +#define SCE_SN_WORD2 7 +#define SCE_SN_WORD3 8 +#define SCE_SN_PREPROCESSOR 9 +#define SCE_SN_OPERATOR 10 +#define SCE_SN_IDENTIFIER 11 +#define SCE_SN_STRINGEOL 12 +#define SCE_SN_REGEXTAG 13 +#define SCE_SN_SIGNAL 14 +#define SCE_SN_USER 19 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif |