aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2001-05-18 22:57:10 +0000
committernyamatongwe <devnull@localhost>2001-05-18 22:57:10 +0000
commit4170ad72152b2ac829afc2e29dd86c8dbecda17e (patch)
tree725a817cb9a14549f22878ca50756445902386cb /include
parent124cc811f6ec7c97bc38c106699891301a4c0dc7 (diff)
downloadscintilla-mirror-4170ad72152b2ac829afc2e29dd86c8dbecda17e.tar.gz
Eiffel support.
Diffstat (limited to 'include')
-rw-r--r--include/SciLexer.h11
-rw-r--r--include/Scintilla.h2
-rw-r--r--include/Scintilla.iface12
3 files changed, 24 insertions, 1 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
diff --git a/include/Scintilla.h b/include/Scintilla.h
index daca5102a..27df91183 100644
--- a/include/Scintilla.h
+++ b/include/Scintilla.h
@@ -63,10 +63,10 @@ typedef sptr_t (*SciFnDirect)(sptr_t ptr, unsigned int iMessage, uptr_t wParam,
#define SCI_SETANCHOR 2026
#define SCI_GETCURLINE 2027
#define SCI_GETENDSTYLED 2028
-#define SCI_CONVERTEOLS 2029
#define SC_EOL_CRLF 0
#define SC_EOL_CR 1
#define SC_EOL_LF 2
+#define SCI_CONVERTEOLS 2029
#define SCI_GETEOLMODE 2030
#define SCI_SETEOLMODE 2031
#define SCI_STARTSTYLING 2032
diff --git a/include/Scintilla.iface b/include/Scintilla.iface
index 533e82a73..a854203f4 100644
--- a/include/Scintilla.iface
+++ b/include/Scintilla.iface
@@ -1222,6 +1222,8 @@ val SCLEX_AVE=19
val SCLEX_ADA=20
val SCLEX_LISP=21
val SCLEX_RUBY=22
+val SCLEX_EIFFEL=23
+val SCLEX_EIFFELKW=24
# When a lexer specifies its language as SCLEX_AUTOMATIC it receives a
# value assigned in sequence from SCLEX_AUTOMATIC+1.
val SCLEX_AUTOMATIC=1000
@@ -1485,6 +1487,16 @@ val SCE_LISP_STRING=6
val SCE_LISP_STRINGEOL=8
val SCE_LISP_IDENTIFIER=9
val SCE_LISP_OPERATOR=10
+# Lexical states for SCLEX_EIFFEL and SCLEX_EIFFELKW
+val SCE_EIFFEL_DEFAULT=0
+val SCE_EIFFEL_COMMENTLINE=1
+val SCE_EIFFEL_NUMBER=2
+val SCE_EIFFEL_WORD=3
+val SCE_EIFFEL_STRING=4
+val SCE_EIFFEL_CHARACTER=5
+val SCE_EIFFEL_OPERATOR=6
+val SCE_EIFFEL_IDENTIFIER=7
+val SCE_EIFFEL_STRINGEOL=8
# Events