diff options
author | nyamatongwe <unknown> | 2001-08-31 02:38:26 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-08-31 02:38:26 +0000 |
commit | 1b279c0d63397caa1f16cdcd028514442dd0b132 (patch) | |
tree | 339ccbe62398b8ece490e271216f5b7914452e2c | |
parent | 5a0ae510e26087adcad5e4dce8d498e1a1f89ec2 (diff) | |
download | scintilla-mirror-1b279c0d63397caa1f16cdcd028514442dd0b132.tar.gz |
Update of lexer list from Simon.
-rw-r--r-- | src/KeyWords.cxx | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 0728580fd..756037a9a 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -108,22 +108,26 @@ LexerModule lmNull(SCLEX_NULL, ColouriseNullDoc, "null"); int wxForceScintillaLexers(void) { extern LexerModule lmAda; extern LexerModule lmAVE; + extern LexerModule lmBatch; extern LexerModule lmConf; - extern LexerModule lmDiff; - extern LexerModule lmLatex; - extern LexerModule lmPascal; extern LexerModule lmCPP; - extern LexerModule lmHTML; - extern LexerModule lmXML; - extern LexerModule lmProps; + extern LexerModule lmDiff; + extern LexerModule lmEiffel; + extern LexerModule lmEiffelkw; extern LexerModule lmErrorList; + extern LexerModule lmHTML; + extern LexerModule lmLatex; + extern LexerModule lmLISP; + extern LexerModule lmLua; extern LexerModule lmMake; - extern LexerModule lmBatch; + extern LexerModule lmPascal; extern LexerModule lmPerl; + extern LexerModule lmProps; extern LexerModule lmPython; + extern LexerModule lmRuby; extern LexerModule lmSQL; extern LexerModule lmVB; - extern LexerModule lmRuby; + extern LexerModule lmXML; if ( &lmAda @@ -143,7 +147,12 @@ int wxForceScintillaLexers(void) { && &lmPython && &lmSQL && &lmVB - && &lmRuby + && &lmRuby + && &lmEiffel + && &lmEiffelkw + && &lmLISP + && &lmLua + && &lmNull ) { return 1; |