changed:
authorStefan Vogel <sv@exept.de>
Thu, 04 Mar 2010 16:11:43 +0100
changeset 12754 25745c828a99
parent 12753 3e6acf834564
child 12755 abeb561f4f70
changed: #initializeForStderr #initializeForStdin #initializeForStdout Set the handleType
NonPositionableExternalStream.st
--- a/NonPositionableExternalStream.st	Thu Mar 04 15:34:21 2010 +0100
+++ b/NonPositionableExternalStream.st	Thu Mar 04 16:11:43 2010 +0100
@@ -420,8 +420,9 @@
     mode := #readwrite.
     buffered := false.
     handle := self handleForStderr.
+    handleType := #filePointer.
     OperatingSystem isMSWINDOWSlike ifTrue:[
-	eolMode := #crlf
+        eolMode := #crlf
     ]
 !
 
@@ -433,6 +434,7 @@
     mode := #readonly.
     "/ buffered := true.
     buffered := false.
+    handleType := #filePointer.
     handle := self handleForStdin.
 !
 
@@ -444,8 +446,9 @@
     mode := #readwrite.
     buffered := false.
     handle := self handleForStdout.
+    handleType := #filePointer.
     OperatingSystem isMSWINDOWSlike ifTrue:[
-	eolMode := #crlf
+        eolMode := #crlf
     ]
 !
 
@@ -557,9 +560,9 @@
 !NonPositionableExternalStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.60 2010-02-09 13:43:39 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.61 2010-03-04 15:11:43 stefan Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.60 2010-02-09 13:43:39 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/NonPositionableExternalStream.st,v 1.61 2010-03-04 15:11:43 stefan Exp $'
 ! !