From 884b65511efa0fa9c2172d2e70bc73f1fcd30e47 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/LexOthers.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/LexOthers.cxx') diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx index a36e9a933..222bc74ff 100644 --- a/src/LexOthers.cxx +++ b/src/LexOthers.cxx @@ -194,7 +194,7 @@ static void ColouriseErrorListDoc(unsigned int startPos, int length, int, WordLi ColouriseErrorListLine(lineBuffer, linePos, startPos + length, styler); } -static LexerModule lmProps(SCLEX_PROPERTIES, ColourisePropsDoc); -static LexerModule lmErrorList(SCLEX_ERRORLIST, ColouriseErrorListDoc); -static LexerModule lmMake(SCLEX_MAKEFILE, ColouriseMakeDoc); -static LexerModule lmBatch(SCLEX_BATCH, ColouriseBatchDoc); +LexerModule lmProps(SCLEX_PROPERTIES, ColourisePropsDoc); +LexerModule lmErrorList(SCLEX_ERRORLIST, ColouriseErrorListDoc); +LexerModule lmMake(SCLEX_MAKEFILE, ColouriseMakeDoc); +LexerModule lmBatch(SCLEX_BATCH, ColouriseBatchDoc); -- cgit v1.2.3