diff options
author | nyamatongwe <devnull@localhost> | 2002-02-12 22:12:13 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2002-02-12 22:12:13 +0000 |
commit | 3d4ba4da35eb10950081d1079d1cb028a41b595b (patch) | |
tree | c6a855296b391ff484e87ebc146f453f92bd3598 /src/LexOthers.cxx | |
parent | 143bb66b08dc3cc919358ed1a4451832826e1332 (diff) | |
download | scintilla-mirror-3d4ba4da35eb10950081d1079d1cb028a41b595b.tar.gz |
Made LexerModule objects not be const again as that was impairing static
linking.
Diffstat (limited to 'src/LexOthers.cxx')
-rw-r--r-- | src/LexOthers.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx index 55a30d564..2c3998e7b 100644 --- a/src/LexOthers.cxx +++ b/src/LexOthers.cxx @@ -521,9 +521,9 @@ static void ColouriseLatexDoc(unsigned int startPos, int length, int initStyle, styler.ColourTo(lengthDoc, state); } -const LexerModule lmBatch(SCLEX_BATCH, ColouriseBatchDoc, "batch"); -const LexerModule lmDiff(SCLEX_DIFF, ColouriseDiffDoc, "diff"); -const LexerModule lmProps(SCLEX_PROPERTIES, ColourisePropsDoc, "props"); -const LexerModule lmMake(SCLEX_MAKEFILE, ColouriseMakeDoc, "makefile"); -const LexerModule lmErrorList(SCLEX_ERRORLIST, ColouriseErrorListDoc, "errorlist"); -const LexerModule lmLatex(SCLEX_LATEX, ColouriseLatexDoc, "latex"); +LexerModule lmBatch(SCLEX_BATCH, ColouriseBatchDoc, "batch"); +LexerModule lmDiff(SCLEX_DIFF, ColouriseDiffDoc, "diff"); +LexerModule lmProps(SCLEX_PROPERTIES, ColourisePropsDoc, "props"); +LexerModule lmMake(SCLEX_MAKEFILE, ColouriseMakeDoc, "makefile"); +LexerModule lmErrorList(SCLEX_ERRORLIST, ColouriseErrorListDoc, "errorlist"); +LexerModule lmLatex(SCLEX_LATEX, ColouriseLatexDoc, "latex"); |