class: PipeStream
authorClaus Gittinger <cg@exept.de>
Mon, 03 Jun 2013 20:40:56 +0200
changeset 15359 060c677e3e92
parent 15358 6b69ebd9785c
child 15360 7bf49766c324
class: PipeStream changed: #openPipeFor:withMode:errorDisposition:inDirectory: ZeroPosition eliminated
PipeStream.st
--- a/PipeStream.st	Mon Jun 03 20:40:36 2013 +0200
+++ b/PipeStream.st	Mon Jun 03 20:40:56 2013 +0200
@@ -758,7 +758,7 @@
     "stdio lib does not work with blocking pipes and interrupts
      for WIN, Linux, Solaris and probably any other UNIX"
     buffered := false.
-    position := ZeroPosition.
+    position := 0.
     hitEOF := false.
     binary := false.
     Lobby register:self.
@@ -796,11 +796,12 @@
 !PipeStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.112 2012-10-26 09:51:53 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.113 2013-06-03 18:40:56 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.112 2012-10-26 09:51:53 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.113 2013-06-03 18:40:56 cg Exp $'
 ! !
 
+
 PipeStream initialize!