diff options
author | nyamatongwe <unknown> | 2001-06-12 11:12:20 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-06-12 11:12:20 +0000 |
commit | d8766c508c9d417e786099abd028c71c512df605 (patch) | |
tree | 6b8824fafe133ee9ba36f3a1bda8df03f546fdb4 | |
parent | db814ebfd2fd9ae9d5da266eb1234cb2dd9c9bf3 (diff) | |
download | scintilla-mirror-d8766c508c9d417e786099abd028c71c512df605.tar.gz |
Patch from Walter to include all the new lexers.
-rw-r--r-- | src/KeyWords.cxx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/KeyWords.cxx b/src/KeyWords.cxx index 9ac71491b..265dbf565 100644 --- a/src/KeyWords.cxx +++ b/src/KeyWords.cxx @@ -94,6 +94,11 @@ LexerModule lmNull(SCLEX_NULL, ColouriseNullDoc, "null"); int wxForceScintillaLexers(void) { extern LexerModule lmAda; + extern LexerModule lmAVE; + extern LexerModule lmConf; + extern LexerModule lmDiff; + extern LexerModule lmLatex; + extern LexerModule lmPascal; extern LexerModule lmCPP; extern LexerModule lmHTML; extern LexerModule lmXML; @@ -109,6 +114,11 @@ int wxForceScintillaLexers(void) { if ( &lmAda + && &lmAVE + && &lmConf + && &lmDiff + && &lmLatex + && &lmPascal && &lmCPP && &lmHTML && &lmXML |