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 | 143bb66b08dc3cc919358ed1a4451832826e1332 (patch) | |
tree | d22b6f888c7db721f57119139113690778c99b32 | |
parent | cbf0ace15854cbdcf87bad740318df635d4baf9c (diff) | |
download | scintilla-mirror-143bb66b08dc3cc919358ed1a4451832826e1332.tar.gz |
Made LexerModule objects not be const again as that was impairing static
linking.
-rw-r--r-- | src/LexBaan.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexBaan.cxx b/src/LexBaan.cxx index 9727473f9..3a36eb8f2 100644 --- a/src/LexBaan.cxx +++ b/src/LexBaan.cxx @@ -186,4 +186,4 @@ static void FoldBaanDoc(unsigned int startPos, int length, int initStyle, WordLi styler.SetLevel(lineCurrent, levelPrev | flagsNext); } -const LexerModule lmBaan(SCLEX_BAAN, ColouriseBaanDoc, "baan", FoldBaanDoc); +LexerModule lmBaan(SCLEX_BAAN, ColouriseBaanDoc, "baan", FoldBaanDoc); |