diff options
author | nyamatongwe <devnull@localhost> | 2006-01-28 22:15:05 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2006-01-28 22:15:05 +0000 |
commit | 63fac567212506045ed9ef10a90e4a8da27ae2b3 (patch) | |
tree | 57baf2c55539f059049f95597c095d46ae1e0246 /src | |
parent | c633b981bfa18f6bc133cf82c64f4c540905e81f (diff) | |
download | scintilla-mirror-63fac567212506045ed9ef10a90e4a8da27ae2b3.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); |