#BUGFIX by cg
authorClaus Gittinger <cg@exept.de>
Thu, 25 Jan 2018 16:56:58 +0100
changeset 22506 d5b781899274
parent 22505 a85d5e597dd0
child 22507 eb40c1d02504
#BUGFIX by cg class: Context FIX: https://expeccoalm.exept.de/D202565 comment/format in: #fullPrintAllString #printAllString changed: #receiverPrintString #test:
Context.st
--- a/Context.st	Thu Jan 25 12:21:27 2018 +0100
+++ b/Context.st	Thu Jan 25 16:56:58 2018 +0100
@@ -1,3 +1,5 @@
+"{ Encoding: utf8 }"
+
 "
  COPYRIGHT (c) 1988 by Claus Gittinger
 	      All Rights Reserved
@@ -1885,7 +1887,7 @@
 
     |s|
 
-    s := WriteStream on:''.
+    s := '' writeStream.
     self fullPrintAllOn:s.
     ^ s contents
 
@@ -2026,7 +2028,7 @@
 
     |s|
 
-    s := WriteStream on:''.
+    s := '' writeStream.
     self printAllOn:s.
     ^ s contents
 
@@ -2183,12 +2185,12 @@
 
     |s|
 
-    s := WriteStream on:''.
+    s := '' writeStream.
     self printReceiverOn:s.
     ^ s contents
 
     "
-	thisContext receiverPrintString
+        thisContext receiverPrintString
     "
 !