diff options
author | nyamatongwe <unknown> | 2000-04-05 00:48:09 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2000-04-05 00:48:09 +0000 |
commit | dae4eea6225cd2f3ed9f2e4dfe46606cc9a0743f (patch) | |
tree | 4f65db898386e743f79b33cc46430a7bafb153f2 /src/LexHTML.cxx | |
parent | d4b849cbe8fa0136a45104f02223332691e098de (diff) | |
download | scintilla-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/LexHTML.cxx')
-rw-r--r-- | src/LexHTML.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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); |