debugger: don't explicitly delete escape chars from exception message, they are already deleted by the GetText method (fixes #13707)

git-svn-id: trunk@20191 -
This commit is contained in:
vincents 2009-05-25 08:34:11 +00:00
parent ba4df81b22
commit b23aa4262c

View File

@ -2646,7 +2646,6 @@ function TGDBMIDebugger.ProcessStopped(const AParams: String; const AIgnoreSigIn
then begin
ExceptionMessage := GetText('^Exception(%s)^.FMessage', [AInfo.ObjAddr]);
//ExceptionMessage := GetText('^^Exception($fp+8)^^.FMessage', []);
ExceptionMessage := DeleteEscapeChars(ExceptionMessage);
end
else ExceptionMessage := '### Not supported on GDB < 5.3 ###';