mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-07 00:38:10 +02:00
SynEdit: Pascal-Highlighter add cppdecl and oldfpccall. Issue #41051
(cherry picked from commit 45b079d896
)
This commit is contained in:
parent
63abb38c15
commit
49bf7a6262
@ -1608,7 +1608,7 @@ end;
|
||||
|
||||
function TSynPasSyn.Func59: TtkTokenKind;
|
||||
begin
|
||||
if KeyComp('Safecall') and
|
||||
if (KeyComp('Safecall') or KeyComp('cppdecl')) and
|
||||
(PasCodeFoldRange.BracketNestLevel in [0, 1]) and
|
||||
(fRange * [rsInProcHeader, rsProperty, rsAfterEqualOrColon, rsWasInProcHeader] = [rsWasInProcHeader]) and
|
||||
(TopPascalCodeFoldBlockType in ProcModifierAllowed)
|
||||
@ -1966,6 +1966,14 @@ begin
|
||||
StartPascalCodeFoldBlock(cfbtClass);
|
||||
end;
|
||||
end
|
||||
else if KeyComp('oldfpccall') and
|
||||
(PasCodeFoldRange.BracketNestLevel in [0, 1]) and
|
||||
(fRange * [rsInProcHeader, rsProperty, rsAfterEqualOrColon, rsWasInProcHeader] = [rsWasInProcHeader]) and
|
||||
(TopPascalCodeFoldBlockType in ProcModifierAllowed)
|
||||
then begin
|
||||
Result := tkModifier;
|
||||
FRange := FRange + [rsInProcHeader];
|
||||
end
|
||||
else
|
||||
Result := tkIdentifier;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user