Author: gcasa
Date: Thu May 5 17:24:23 2016
New Revision: 39724
URL: http://svn.gna.org/viewcvs/gnustep?rev=39724&view=rev
Log:
Handle more escaped sequences.
Modified:
apps/projectcenter/trunk/ChangeLog
apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PipeDelegate.m
Modified: apps/projectcenter/trunk/ChangeLog
URL:
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/ChangeLog?rev=39724&r1=39723&r2=39724&view=diff
==============================================================================
--- apps/projectcenter/trunk/ChangeLog (original)
+++ apps/projectcenter/trunk/ChangeLog Thu May 5 17:24:23 2016
@@ -1,3 +1,8 @@
+2016-05-05 11:23-EDT Gregory John Casamento <[email protected]>
+
+ * Modules/Debuggers/ProjectCenter/PipeDelegate.m: Handle more
+ escaped sequences to futher clean up output.
+
2016-05-03 19:40-EDT Gregory John Casamento <[email protected]>
* Modules/Debuggers/ProjectCenter/PipeDelegate.h
Modified:
apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PipeDelegate.m
URL:
http://svn.gna.org/viewcvs/gnustep/apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PipeDelegate.m?rev=39724&r1=39723&r2=39724&view=diff
==============================================================================
--- apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PipeDelegate.m
(original)
+++ apps/projectcenter/trunk/Modules/Debuggers/ProjectCenter/PipeDelegate.m
Thu May 5 17:24:23 2016
@@ -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;
}
_______________________________________________
Gnustep-cvs mailing list
[email protected]
https://mail.gna.org/listinfo/gnustep-cvs