aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2003-03-17 09:24:27 +0000
committernyamatongwe <devnull@localhost>2003-03-17 09:24:27 +0000
commit1e10f448e3d2d199cd6fc3007ee52f4aec4f1bbd (patch)
treeee359f049bdcb87ecd787bca5b834b6530241304 /src
parentd8a0c99dfafc7257f38c27d1d00d2d3b39ccd594 (diff)
downloadscintilla-mirror-1e10f448e3d2d199cd6fc3007ee52f4aec4f1bbd.tar.gz
POV-Ray support.
Diffstat (limited to 'src')
-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()) {