mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 19:49:18 +02:00
Debugger: GDBMI, fix range check
git-svn-id: trunk@44544 -
This commit is contained in:
parent
825ebd7c8b
commit
1dab2ee8d8
@ -11560,7 +11560,7 @@ var
|
|||||||
end;
|
end;
|
||||||
end;
|
end;
|
||||||
'}': begin
|
'}': begin
|
||||||
if (i > 0) and (AInput[i-1] <> '{') and
|
if (i > 1) and (AInput[i-1] <> '{') and
|
||||||
((not IsArray) or (InRounds = 0))
|
((not IsArray) or (InRounds = 0))
|
||||||
then Delete(Indent, 1, Length(INDENTSTRING));
|
then Delete(Indent, 1, Length(INDENTSTRING));
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user