Context.st
changeset 22506 d5b781899274
parent 22368 fe9f9487a3ed
child 22601 8258751a7465
--- 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
     "
 !