diff options
author | nyamatongwe <devnull@localhost> | 2000-04-05 00:48:09 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2000-04-05 00:48:09 +0000 |
commit | 884b65511efa0fa9c2172d2e70bc73f1fcd30e47 (patch) | |
tree | 4f65db898386e743f79b33cc46430a7bafb153f2 /src/LexPerl.cxx | |
parent | 79f23a6ce721bbf1f4ae89d0f2bc86d83fbe52b7 (diff) | |
download | scintilla-mirror-884b65511efa0fa9c2172d2e70bc73f1fcd30e47.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.cxx | 2 |
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); |