diff --git a/ChangeLog b/ChangeLog index a05e89f..6267524 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2016-05-05 11:23-EDT Gregory John Casamento + + * Modules/Debuggers/ProjectCenter/PipeDelegate.m: Handle more + escaped sequences to futher clean up output. + 2016-05-03 19:40-EDT Gregory John Casamento * Modules/Debuggers/ProjectCenter/PipeDelegate.h diff --git a/Modules/Debuggers/ProjectCenter/PipeDelegate.m b/Modules/Debuggers/ProjectCenter/PipeDelegate.m index a493c38..eae787d 100644 --- a/Modules/Debuggers/ProjectCenter/PipeDelegate.m +++ b/Modules/Debuggers/ProjectCenter/PipeDelegate.m @@ -245,6 +245,8 @@ unescapedString = [unescapedString substringToIndex: [unescapedString length] - 1]; unescapedString = [unescapedString stringByReplacingOccurrencesOfString: @"\"" withString: @"\""]; unescapedString = [unescapedString stringByReplacingOccurrencesOfString: @"\\n" withString: @"\n"]; + unescapedString = [unescapedString stringByReplacingOccurrencesOfString: @"\\t" withString: @"\t"]; + unescapedString = [unescapedString stringByReplacingOccurrencesOfString: @"\\032" withString: @" "]; return unescapedString; }