On 09/11/2009 09:03 AM, Tim Felgentreff wrote:
---
packages/stinst/parser/SqueakExporter.st | 5 +++--
1 files changed, 3 insertions(+), 2 deletions(-)
Hi,
this and th previous patch fix the two remaining problems I had with Squeak
format converting, namely wrong newlines and inclusion of the Gnu Smalltalk
style
category in the method body.
Hope just posting them like this is ok.
Yes, it's fine. I committed it to OldSyntaxExporter instead.
Can you check whether something like this is enough?
--- a/packages/stinst/parser/SqueakExporter.st
+++ b/packages/stinst/parser/SqueakExporter.st
@@ -44,9 +44,12 @@ OldSyntaxExporter subclass: SqueakSyntaxExporter [
]
fileOutChunk: aString [
+ | s |
+ s := aString copyReplaceAll: '!' with: '!!'.
+ s := s replaceAll: Character nl with: Character cr.
outStream
nl;
- nextPutAll: (aString copyReplaceAll: '!' with: '!!');
+ nextPutAll: s;
nextPut: $!
]
?
Paolo
_______________________________________________
help-smalltalk mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/help-smalltalk