Debugger: GDBMI, fix range check

git-svn-id: trunk@44544 -
This commit is contained in:
martin 2014-03-29 00:19:29 +00:00
parent 825ebd7c8b
commit 1dab2ee8d8

View File

@ -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;