diff options
author | nyamatongwe <unknown> | 2010-07-16 20:47:18 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-07-16 20:47:18 +1000 |
commit | 673dabf7ec3631e1f9a12a82c53fae20dd8e22fa (patch) | |
tree | 763c852908159f6b8954cdbcf1584409261ef185 | |
parent | 5146eb4f362ce2a3b2253a790b623b635e80489a (diff) | |
download | scintilla-mirror-673dabf7ec3631e1f9a12a82c53fae20dd8e22fa.tar.gz |
Removed dead comments.
-rw-r--r-- | src/ExternalLexer.cxx | 3 |
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; |