aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authornyamatongwe <unknown>2006-01-28 22:15:05 +0000
committernyamatongwe <unknown>2006-01-28 22:15:05 +0000
commit643e426ef1830a458abf0695fdc5229fe4f0ef9e (patch)
tree57baf2c55539f059049f95597c095d46ae1e0246 /src
parentabf88051bd810be7654224c3b9a6d26b35a9cbc8 (diff)
downloadscintilla-mirror-643e426ef1830a458abf0695fdc5229fe4f0ef9e.tar.gz
Bug 1417074 fixed with symbolic constant rather than value.
Diffstat (limited to 'src')
-rw-r--r--src/LexOthers.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx
index 6e5409bd9..626a2c18c 100644
--- a/src/LexOthers.cxx
+++ b/src/LexOthers.cxx
@@ -603,7 +603,7 @@ static void ColourisePropsLine(
i++;
if ((i < lengthLine) && (lineBuffer[i] == '=')) {
styler.ColourTo(startLine + i - 1, SCE_PROPS_DEFAULT);
- styler.ColourTo(startLine + i, 3);
+ styler.ColourTo(startLine + i, SCE_PROPS_ASSIGNMENT);
styler.ColourTo(endPos, SCE_PROPS_DEFAULT);
} else {
styler.ColourTo(endPos, SCE_PROPS_DEFAULT);