syxsyn, fix lexOpAndOpOpAndOpEqual lookup tested the wrong char

leading to `-1` being colourized as a whole symbol
This commit is contained in:
Basile Burg 2021-11-08 10:37:40 +01:00
parent 99557fed58
commit 9c79c35082
1 changed files with 1 additions and 1 deletions

View File

@ -399,7 +399,7 @@ begin
nextPChar := safeLookupChar();
if nextPChar <> nil then
begin
nextChar := fLineBuf[fTokStop];
nextChar := nextPChar^;
if (nextChar = op) or (nextChar = '=') then
fTokStop += 1;
end;