aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexOthers.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2000-04-05 00:48:09 +0000
committernyamatongwe <unknown>2000-04-05 00:48:09 +0000
commitdae4eea6225cd2f3ed9f2e4dfe46606cc9a0743f (patch)
tree4f65db898386e743f79b33cc46430a7bafb153f2 /src/LexOthers.cxx
parentd4b849cbe8fa0136a45104f02223332691e098de (diff)
downloadscintilla-mirror-dae4eea6225cd2f3ed9f2e4dfe46606cc9a0743f.tar.gz
Changed the lexer module objects to be globally visible (by removing 'static')
so they can be explicitly referenced to force inclusion in a build.
Diffstat (limited to 'src/LexOthers.cxx')
-rw-r--r--src/LexOthers.cxx8
1 files changed, 4 insertions, 4 deletions
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);