---
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.
Regards,
Tim
diff --git a/packages/stinst/parser/SqueakExporter.st b/packages/stinst/parser/SqueakExporter.st
index 98a62b3..ab7557f 100644
--- a/packages/stinst/parser/SqueakExporter.st
+++ b/packages/stinst/parser/SqueakExporter.st
@@ -50,8 +50,9 @@ OldSyntaxExporter subclass: SqueakSyntaxExporter [
fileOutChunk: aString [
outStream
nl;
- nextPutAll: ((aString copyReplaceAll: '!' with: '!!')
- replaceAll: Character lf with: Character cr);
+ nextPutAll: (((aString copyReplaceAll: '!' with: '!!')
+ copyReplacingRegex: '<category: .*>' with: '')
+ replaceAll: Character lf with: Character cr);
nextPut: $!
]
_______________________________________________
help-smalltalk mailing list
[hidden email]
http://lists.gnu.org/mailman/listinfo/help-smalltalk