aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexOthers.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-02-12 22:12:13 +0000
committernyamatongwe <unknown>2002-02-12 22:12:13 +0000
commitcee192aef14978e07702fe7f37f14ab01a2e08fb (patch)
treec6a855296b391ff484e87ebc146f453f92bd3598 /src/LexOthers.cxx
parent9d49558e6e9967774d7efa4b19e75d941cecb611 (diff)
downloadscintilla-mirror-cee192aef14978e07702fe7f37f14ab01a2e08fb.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.cxx12
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");