#BUGFIX by stefan
authorStefan Vogel <sv@exept.de>
Wed, 10 Jan 2018 21:23:19 +0100
changeset 22410 60be3e20e9f0
parent 22409 5a6cfd90e913
child 22411 0aa3288a46bb
#BUGFIX by stefan class: PositionableStream changed: #upToAll_positionBefore: fix for EncodesSterams returning UnicodeCharcters
PositionableStream.st
--- a/PositionableStream.st	Wed Jan 10 10:32:58 2018 +0100
+++ b/PositionableStream.st	Wed Jan 10 21:23:19 2018 +0100
@@ -928,7 +928,7 @@
     |answerStream element last|
 
     last := aCollection last.
-    answerStream := WriteStream on:(self contentsSpecies new:100).
+    answerStream := self contentsSpecies writeStream.
     [(element := self nextOrNil) notNil] whileTrue:[
         answerStream nextPut:element.
         (element = last and:[answerStream endsBeforePositionWith:aCollection]) ifTrue:[
@@ -963,8 +963,8 @@
      Transcript show:'<'; show:(s upToEnd); showCR:'>'. 
     "
 
-    "Modified: / 12.1.1998 / 22:06:42 / cg"
-    "Created: / 12.1.1998 / 22:07:01 / cg"
+    "Created: / 12-01-1998 / 22:07:01 / cg"
+    "Modified: / 10-01-2018 / 18:30:07 / stefan"
 !
 
 upToEnd