mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-13 10:59:18 +02:00
* prepend the watch value with '= ' to keep the old way the IDE watches looked
like (the '= ' used to come from the gdb output and was intentionally kept by the response parsing code, which is now removed) git-svn-id: trunk@30059 -
This commit is contained in:
parent
08ed7778db
commit
7acc709ac0
@ -2948,7 +2948,7 @@ procedure TWatch.Get_new_value;
|
|||||||
loop_higher:=false;
|
loop_higher:=false;
|
||||||
end;
|
end;
|
||||||
if found then
|
if found then
|
||||||
current_value:=StrNew(PChar(s))
|
current_value:=StrNew(PChar('= ' + s))
|
||||||
else
|
else
|
||||||
current_value:=StrNew(PChar(orig_s_result));
|
current_value:=StrNew(PChar(orig_s_result));
|
||||||
Debugger^.got_error:=false;
|
Debugger^.got_error:=false;
|
||||||
|
Loading…
Reference in New Issue
Block a user