aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexPerl.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/LexPerl.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/LexPerl.cxx')
-rw-r--r--src/LexPerl.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexPerl.cxx b/src/LexPerl.cxx
index 8fef7225e..155a0c1a2 100644
--- a/src/LexPerl.cxx
+++ b/src/LexPerl.cxx
@@ -485,4 +485,4 @@ static void ColourisePerlDoc(unsigned int startPos, int length, int initStyle,
styler.ColourTo(lengthDoc, state);
}
-static LexerModule lmPerl(SCLEX_PERL, ColourisePerlDoc);
+LexerModule lmPerl(SCLEX_PERL, ColourisePerlDoc);