# HG changeset patch # User Claus Gittinger # Date 1516895818 -3600 # Node ID d5b781899274d6ec11521971afb761d8edaacc48 # Parent a85d5e597dd0bbff2e3c32ddb9ee348c27f8ac46 #BUGFIX by cg class: Context FIX: https://expeccoalm.exept.de/D202565 comment/format in: #fullPrintAllString #printAllString changed: #receiverPrintString #test: diff -r a85d5e597dd0 -r d5b781899274 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 " !