From cee192aef14978e07702fe7f37f14ab01a2e08fb Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Tue, 12 Feb 2002 22:12:13 +0000 Subject: Made LexerModule objects not be const again as that was impairing static linking. --- src/LexHTML.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/LexHTML.cxx') diff --git a/src/LexHTML.cxx b/src/LexHTML.cxx index f4d662234..de0aa4ef3 100644 --- a/src/LexHTML.cxx +++ b/src/LexHTML.cxx @@ -1842,7 +1842,7 @@ static void ColourisePHPDoc(unsigned int startPos, int length, int initStyle, Wo sc.Complete(); } -const LexerModule lmHTML(SCLEX_HTML, ColouriseHyperTextDoc, "hypertext"); -const LexerModule lmXML(SCLEX_XML, ColouriseHyperTextDoc, "xml"); -const LexerModule lmASP(SCLEX_ASP, ColouriseASPDoc, "asp"); -const LexerModule lmPHP(SCLEX_PHP, ColourisePHPDoc, "php"); +LexerModule lmHTML(SCLEX_HTML, ColouriseHyperTextDoc, "hypertext"); +LexerModule lmXML(SCLEX_XML, ColouriseHyperTextDoc, "xml"); +LexerModule lmASP(SCLEX_ASP, ColouriseASPDoc, "asp"); +LexerModule lmPHP(SCLEX_PHP, ColourisePHPDoc, "php"); -- cgit v1.2.3