From dae4eea6225cd2f3ed9f2e4dfe46606cc9a0743f Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Wed, 5 Apr 2000 00:48:09 +0000 Subject: Changed the lexer module objects to be globally visible (by removing 'static') so they can be explicitly referenced to force inclusion in a build. --- src/LexHTML.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/LexHTML.cxx') diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index 87bb29335..e7431e322 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -1135,5 +1135,5 @@ static void ColouriseHyperTextDoc(unsigned int startPos, int length, int initSty styler.ColourTo(lengthDoc - 1, state); } -static LexerModule lmHTML(SCLEX_HTML, ColouriseHyperTextDoc); -static LexerModule lmXML(SCLEX_XML, ColouriseHyperTextDoc); +LexerModule lmHTML(SCLEX_HTML, ColouriseHyperTextDoc); +LexerModule lmXML(SCLEX_XML, ColouriseHyperTextDoc); -- cgit v1.2.3