aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexAVE.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2002-02-12 22:12:13 +0000
committernyamatongwe <unknown>2002-02-12 22:12:13 +0000
commitff2799b71849c8b53a4f4a7a9e2f2e59ffe504d1 (patch)
treebbbde05cf2b95b24584015ca52ddaf149e32e51d /src/LexAVE.cxx
parent074ae2faf0a811f883f1e8b78371396670e9216d (diff)
downloadscintilla-mirror-ff2799b71849c8b53a4f4a7a9e2f2e59ffe504d1.tar.gz
Made LexerModule objects not be const again as that was impairing static
linking.
Diffstat (limited to 'src/LexAVE.cxx')
-rw-r--r--src/LexAVE.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexAVE.cxx b/src/LexAVE.cxx
index 4410ce342..dfd15f02f 100644
--- a/src/LexAVE.cxx
+++ b/src/LexAVE.cxx
@@ -185,4 +185,4 @@ static void ColouriseAveDoc(unsigned int startPos, int length, int initStyle, Wo
}
}
-const LexerModule lmAVE(SCLEX_AVE, ColouriseAveDoc, "ave");
+LexerModule lmAVE(SCLEX_AVE, ColouriseAveDoc, "ave");