mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-16 00:19:32 +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;
|
||||
'}': begin
|
||||
if (i > 0) and (AInput[i-1] <> '{') and
|
||||
if (i > 1) and (AInput[i-1] <> '{') and
|
||||
((not IsArray) or (InRounds = 0))
|
||||
then Delete(Indent, 1, Length(INDENTSTRING));
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user