mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-28 20:40:56 +02:00
synedit: add 'Platform' keyword to the highlighter
git-svn-id: trunk@17719 -
This commit is contained in:
parent
27f131b0a7
commit
13a160ad52
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user