* 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:
nickysn 2015-03-02 00:50:45 +00:00
parent 08ed7778db
commit 7acc709ac0

View File

@ -2948,7 +2948,7 @@ procedure TWatch.Get_new_value;
loop_higher:=false;
end;
if found then
current_value:=StrNew(PChar(s))
current_value:=StrNew(PChar('= ' + s))
else
current_value:=StrNew(PChar(orig_s_result));
Debugger^.got_error:=false;