PipeStream.st
changeset 7114 acc13967229e
parent 7079 07625dfffcbf
child 7663 cb09eede524f
--- a/PipeStream.st	Mon Mar 17 17:42:15 2003 +0100
+++ b/PipeStream.st	Mon Mar 17 17:47:00 2003 +0100
@@ -701,7 +701,7 @@
     "stdio lib does not work with blocking pipes and interrupts
      for WIN, Linux, Solaris and probably any other UNIX"
     buffered := false.
-    position := 1.
+    position := ZeroPosition.
     hitEOF := false.
     binary := false.
     Lobby register:self.
@@ -714,7 +714,7 @@
 !PipeStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.95 2003-02-27 14:40:37 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/PipeStream.st,v 1.96 2003-03-17 16:47:00 cg Exp $'
 ! !
 
 PipeStream initialize!