diff options
author | nyamatongwe <devnull@localhost> | 2006-02-03 23:13:31 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2006-02-03 23:13:31 +0000 |
commit | 7e37844ea349b580b3c5557d7244cb43f15326d2 (patch) | |
tree | fb2b338888e159915358697069cab2ae0387d205 /include/SciLexer.h | |
parent | d70d2f8e3d9cf3d1d3025aad8d9e7e40af19af72 (diff) | |
download | scintilla-mirror-7e37844ea349b580b3c5557d7244cb43f15326d2.tar.gz |
Support for Opal language from Sebastian Pipping.
Diffstat (limited to 'include/SciLexer.h')
-rw-r--r-- | include/SciLexer.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/include/SciLexer.h b/include/SciLexer.h index 204349ce4..d72f55642 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -89,6 +89,7 @@ #define SCLEX_CSOUND 74 #define SCLEX_FREEBASIC 75 #define SCLEX_INNOSETUP 76 +#define SCLEX_OPAL 77 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -1022,6 +1023,16 @@ #define SCE_INNO_STRING_DOUBLE 10 #define SCE_INNO_STRING_SINGLE 11 #define SCE_INNO_IDENTIFIER 12 +#define SCE_OPAL_SPACE 0 +#define SCE_OPAL_COMMENT_BLOCK 1 +#define SCE_OPAL_COMMENT_LINE 2 +#define SCE_OPAL_INTEGER 3 +#define SCE_OPAL_KEYWORD 4 +#define SCE_OPAL_SORT 5 +#define SCE_OPAL_STRING 6 +#define SCE_OPAL_PAR 7 +#define SCE_OPAL_BOOL_CONST 8 +#define SCE_OPAL_DEFAULT 32 #define SCLEX_ASP 29 #define SCLEX_PHP 30 //--Autogenerated -- end of section automatically generated from Scintilla.iface |