diff options
author | nyamatongwe <unknown> | 2001-05-18 22:57:10 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-05-18 22:57:10 +0000 |
commit | c0829f053a1a039d469af7afc8541979ea22289a (patch) | |
tree | 725a817cb9a14549f22878ca50756445902386cb /include/SciLexer.h | |
parent | 8e0412fc0bddd08d7d841dd2a9d55211ab4f8178 (diff) | |
download | scintilla-mirror-c0829f053a1a039d469af7afc8541979ea22289a.tar.gz |
Eiffel support.
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 72f9cd5ea..b55c5a375 100644 --- a/include/SciLexer.h +++ b/include/SciLexer.h @@ -37,6 +37,8 @@ #define SCLEX_ADA 20 #define SCLEX_LISP 21 #define SCLEX_RUBY 22 +#define SCLEX_EIFFEL 23 +#define SCLEX_EIFFELKW 24 #define SCLEX_AUTOMATIC 1000 #define SCE_P_DEFAULT 0 #define SCE_P_COMMENTLINE 1 @@ -276,6 +278,15 @@ #define SCE_LISP_STRINGEOL 8 #define SCE_LISP_IDENTIFIER 9 #define SCE_LISP_OPERATOR 10 +#define SCE_EIFFEL_DEFAULT 0 +#define SCE_EIFFEL_COMMENTLINE 1 +#define SCE_EIFFEL_NUMBER 2 +#define SCE_EIFFEL_WORD 3 +#define SCE_EIFFEL_STRING 4 +#define SCE_EIFFEL_CHARACTER 5 +#define SCE_EIFFEL_OPERATOR 6 +#define SCE_EIFFEL_IDENTIFIER 7 +#define SCE_EIFFEL_STRINGEOL 8 //--Autogenerated -- end of section automatically generated from Scintilla.iface #endif |