aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2003-03-17 09:24:27 +0000
committernyamatongwe <unknown>2003-03-17 09:24:27 +0000
commit690efdf4cbdd0d292003d84ad8989699d758377f (patch)
treeee359f049bdcb87ecd787bca5b834b6530241304
parentd2dfeb9262bd6f0e50c0e9ba852a4cf60d1adeb1 (diff)
downloadscintilla-mirror-690efdf4cbdd0d292003d84ad8989699d758377f.tar.gz
POV-Ray support.
-rw-r--r--src/LexPOV.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexPOV.cxx b/src/LexPOV.cxx
index 93f773bdf..1e44450bb 100644
--- a/src/LexPOV.cxx
+++ b/src/LexPOV.cxx
@@ -53,7 +53,7 @@ static void ColourisePOVDoc(unsigned int startPos, int length, int initStyle, Wo
StyleContext sc(startPos, length, initStyle, styler);
- bool caseSensitive = styler.GetPropertyInt("case.sensitive", 1) != 0;
+ bool caseSensitive = styler.GetPropertyInt("pov.case.sensitive", 1) != 0;
for (; sc.More(); sc.Forward()) {