From b23aa4262c32ac000397ceb8098450534bc003fe Mon Sep 17 00:00:00 2001 From: vincents Date: Mon, 25 May 2009 08:34:11 +0000 Subject: [PATCH] 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 - --- debugger/gdbmidebugger.pp | 1 - 1 file changed, 1 deletion(-) diff --git a/debugger/gdbmidebugger.pp b/debugger/gdbmidebugger.pp index 366c3aec02..c143decece 100644 --- a/debugger/gdbmidebugger.pp +++ b/debugger/gdbmidebugger.pp @@ -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 ###';