diff options
author | nyamatongwe <unknown> | 2006-01-28 22:15:05 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2006-01-28 22:15:05 +0000 |
commit | 643e426ef1830a458abf0695fdc5229fe4f0ef9e (patch) | |
tree | 57baf2c55539f059049f95597c095d46ae1e0246 /src | |
parent | abf88051bd810be7654224c3b9a6d26b35a9cbc8 (diff) | |
download | scintilla-mirror-643e426ef1830a458abf0695fdc5229fe4f0ef9e.tar.gz |
Bug 1417074 fixed with symbolic constant rather than value.
Diffstat (limited to 'src')
-rw-r--r-- | src/LexOthers.cxx | 2 |
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); |