ActorStream.st
changeset 4768 a03651751649
parent 3531 88c3aa9a14fc
child 4790 bacf758a10cc
--- a/ActorStream.st	Thu Nov 22 15:47:15 2018 +0100
+++ b/ActorStream.st	Thu Nov 22 15:48:00 2018 +0100
@@ -142,9 +142,11 @@
      If there is no nextPutAllBlock, nextPuts will be used (as inherited)"
 
     nextPutAllBlock notNil ifTrue:[    
-        ^ nextPutAllBlock value:(something copyFrom:start to:stop)
+        nextPutAllBlock value:(something copyFrom:start to:stop)
     ].
     super nextPutAll:something startingAt:start to:stop
+
+    "Modified: / 22-11-2018 / 12:52:51 / Stefan Vogel"
 !
 
 nextPutByte:something
@@ -239,6 +241,6 @@
 !ActorStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic2/ActorStream.st,v 1.14 2015-03-13 10:37:49 stefan Exp $'
+    ^ '$Header$'
 ! !