diff -Naur scite167/scintilla/include/Scintilla.iface scite167_new/scintilla/include/Scintilla.iface --- scite167/scintilla/include/Scintilla.iface 2005-12-13 05:35:26.000000000 +0100 +++ scite167_new/scintilla/include/Scintilla.iface 2006-02-12 13:37:30.000000000 +0100 @@ -2094,6 +2094,7 @@ val SCE_PROPS_SECTION=2 val SCE_PROPS_ASSIGNMENT=3 val SCE_PROPS_DEFVAL=4 +val SCE_PROPS_KEY=5 # Lexical states for SCLEX_LATEX lex LaTeX=SCLEX_LATEX SCE_L_ val SCE_L_DEFAULT=0 diff -Naur scite167/scintilla/src/LexOthers.cxx scite167_new/scintilla/src/LexOthers.cxx --- scite167/scintilla/src/LexOthers.cxx 2005-08-12 02:34:46.000000000 +0200 +++ scite167_new/scintilla/src/LexOthers.cxx 2006-02-12 13:39:56.000000000 +0100 @@ -593,8 +593,8 @@ while ((i < lengthLine) && (lineBuffer[i] != '=')) i++; if ((i < lengthLine) && (lineBuffer[i] == '=')) { - styler.ColourTo(startLine + i - 1, SCE_PROPS_DEFAULT); - styler.ColourTo(startLine + i, 3); + styler.ColourTo(startLine + i - 1, SCE_PROPS_KEY); + styler.ColourTo(startLine + i, SCE_PROPS_ASSIGNMENT); styler.ColourTo(endPos, SCE_PROPS_DEFAULT); } else { styler.ColourTo(endPos, SCE_PROPS_DEFAULT); diff -Naur scite167/scite/src/others.properties scite167_new/scite/src/others.properties --- scite167/scite/src/others.properties 2005-07-26 11:03:48.000000000 +0200 +++ scite167_new/scite/src/others.properties 2006-02-12 13:37:08.000000000 +0100 @@ -34,6 +34,8 @@ style.props.3=$(colour.other.operator) # Default value (@) style.props.4=$(colour.preproc) +# Key +style.props.5= # Matched Operators style.props.34=fore:#0000FF,notbold style.props.35=fore:#FF0000,notbold