diff options
author | nyamatongwe <devnull@localhost> | 2001-08-15 08:21:47 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-15 08:21:47 +0000 |
commit | 204c1de46e965db686dfcbec2ddf53ebeb7094e5 (patch) | |
tree | 47c1718c5cf317fb843b7918888e0490e209c8f4 | |
parent | 13ccb8451ec037788413244d45d322aa0fcf1be2 (diff) | |
download | scintilla-mirror-204c1de46e965db686dfcbec2ddf53ebeb7094e5.tar.gz |
Added TCL lexer as alias of C++ lexer.
-rw-r--r-- | src/LexCPP.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/LexCPP.cxx b/src/LexCPP.cxx index 0b1e532c4..19aa329ba 100644 --- a/src/LexCPP.cxx +++ b/src/LexCPP.cxx @@ -385,3 +385,4 @@ static void FoldCppDoc(unsigned int startPos, int length, int initStyle, WordLis } LexerModule lmCPP(SCLEX_CPP, ColouriseCppDoc, "cpp", FoldCppDoc); +LexerModule lmTCL(SCLEX_TCL, ColouriseCppDoc, "tcl", FoldCppDoc); |