diff --git a/CHANGELOG.md b/CHANGELOG.md index c71f02f6..fe18864f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ ## Bugs fixed +- D2 highlighter: for `Call()`, `Call` wont be considered anymore as a type. (#69) - GDB commander: 5 empty arguments were passed to the main function called by libc. (#86) ## Other diff --git a/src/u_d2syn.pas b/src/u_d2syn.pas index 196189da..45e71a3d 100644 --- a/src/u_d2syn.pas +++ b/src/u_d2syn.pas @@ -1161,10 +1161,10 @@ begin end else if specialKeywordsMap.match(fLineBuf[FTokStart..fTokStop-1]) then fTokKind := tkSpecK + else if reader^ = '(' then + fTokKind:= tkCall else if fPhobosStyleType and ('A' <= fLineBuf[FTokStart]) and (fLineBuf[FTokStart] <= 'Z') then fTokKind:= tkTypes - else if reader^ = '(' then - fTokKind:= tkCall else if rkAsm in fCurrRange.rangeKinds then fTokKind:=tkAsmbl; exit;