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