aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2010-07-16 20:47:18 +1000
committernyamatongwe <devnull@localhost>2010-07-16 20:47:18 +1000
commitd3ed04292cfe899b210882f5028d7e0e6aaf2509 (patch)
tree9b7fbef6cfbbf5be9ac448e4eec242c3044f75ed /src
parent90bb4336c0017e64103a6b73d24a964b05161391 (diff)
downloadscintilla-mirror-d3ed04292cfe899b210882f5028d7e0e6aaf2509.tar.gz
Removed dead comments.
Diffstat (limited to 'src')
-rw-r--r--src/ExternalLexer.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/ExternalLexer.cxx b/src/ExternalLexer.cxx
index ba0f52ab3..02b7eaa8d 100644
--- a/src/ExternalLexer.cxx
+++ b/src/ExternalLexer.cxx
@@ -65,8 +65,6 @@ LexerLibrary::LexerLibrary(const char *ModuleName) {
// Find functions in the DLL
GetLexerNameFn GetLexerName = (GetLexerNameFn)(sptr_t)lib->FindFunction("GetLexerName");
- //ExtLexerFunction fnLexer = (ExtLexerFunction)(sptr_t)lib->FindFunction("Lex");
- //ExtFoldFunction fnFolder = (ExtFoldFunction)(sptr_t)lib->FindFunction("Fold");
GetLexerFactoryFunction fnFactory = (GetLexerFactoryFunction)(sptr_t)lib->FindFunction("GetLexerFactory");
// Assign a buffer for the lexer name.
@@ -107,7 +105,6 @@ LexerLibrary::~LexerLibrary() {
}
void LexerLibrary::Release() {
- //TODO maintain a list of lexers created, and delete them!
LexerMinder *lm;
LexerMinder *lmNext;
lm = first;