synedit: add 'Platform' keyword to the highlighter

git-svn-id: trunk@17719 -
This commit is contained in:
paul 2008-12-08 02:41:17 +00:00
parent 27f131b0a7
commit 13a160ad52

View File

@ -1085,7 +1085,13 @@ end;
function TSynPasSyn.Func101: TtkTokenKind;
begin
if KeyComp('Register') then Result := tkKey else Result := tkIdentifier;
if KeyComp('Register') then
Result := tkKey
else
if KeyComp('Platform') then
Result := tkKey
else
Result := tkIdentifier;
end;
function TSynPasSyn.Func102: TtkTokenKind;