aboutsummaryrefslogtreecommitdiffhomepage
path: root/lexlib/LexerModule.cxx
diff options
context:
space:
mode:
authormitchell <unknown>2020-06-19 08:40:49 -0400
committermitchell <unknown>2020-06-19 08:40:49 -0400
commitee0e98b74c7e7c64fb9079cd0bacd4c3e840c3b0 (patch)
tree9c3c74b739dfdfaa36dfcb6df613c48fbbf00de5 /lexlib/LexerModule.cxx
parent6822a42fc6e0d25fe583d8d0fac80946c30bd8ca (diff)
downloadscintilla-mirror-ee0e98b74c7e7c64fb9079cd0bacd4c3e840c3b0.tar.gz
Reverted experimental Lexilla and SCI_SETILEXER support.
When testing, it works when compiled with debug symbols enabled, but crashes without them. It doesn't seem worth maintaining.
Diffstat (limited to 'lexlib/LexerModule.cxx')
-rw-r--r--lexlib/LexerModule.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/lexlib/LexerModule.cxx b/lexlib/LexerModule.cxx
index 592b53871..eecaa7b49 100644
--- a/lexlib/LexerModule.cxx
+++ b/lexlib/LexerModule.cxx
@@ -35,7 +35,6 @@ LexerModule::LexerModule(int language_,
fnLexer(fnLexer_),
fnFolder(fnFolder_),
fnFactory(nullptr),
- fnFactory5(nullptr),
wordListDescriptions(wordListDescriptions_),
lexClasses(lexClasses_),
nClasses(nClasses_),
@@ -97,8 +96,6 @@ size_t LexerModule::NamedStyles() const {
ILexer *LexerModule::Create() const {
if (fnFactory)
return fnFactory();
- else if (fnFactory5)
- return new LexillaLexer(fnFactory5());
else
return new LexerSimple(this);
}