NonPositionableExternalStream.st
changeset 19860 324edacff5cc
parent 19073 adceca67c57b
child 19863 513bd7237fe7
child 20105 251e963545c6
--- a/NonPositionableExternalStream.st	Tue May 17 00:56:14 2016 +0200
+++ b/NonPositionableExternalStream.st	Tue May 17 02:04:25 2016 +0200
@@ -227,7 +227,7 @@
      In this case, we ignore the error."
 
     ((self == Stderr) or:[self == Stdout]) ifTrue:[
-        ^ self
+	^ self
     ].
     super writeError:errorNumber
 ! !
@@ -361,7 +361,7 @@
 #ifdef __SCHTEAM__
     return context._RETURN( StandardErrorStream );
 #else
-# ifdef WIN32
+# ifdef __win32__
     RETURN ( __MKEXTERNALADDRESS( __win32_stderr() ));
 # else
     RETURN ( __MKEXTERNALADDRESS(stderr) );
@@ -379,7 +379,7 @@
 #ifdef __SCHTEAM__
     return context._RETURN( StandardInputStream );
 #else
-# ifdef WIN32
+# ifdef __win32__
     RETURN ( __MKEXTERNALADDRESS( __win32_stdin() ));
 # else
     RETURN ( __MKEXTERNALADDRESS(stdin) );
@@ -397,7 +397,7 @@
 #ifdef __SCHTEAM__
     return context._RETURN( StandardOutputStream );
 #else
-# ifdef WIN32
+# ifdef __win32__
     RETURN ( __MKEXTERNALADDRESS( __win32_stdout() ));
 # else
     RETURN ( __MKEXTERNALADDRESS(stdout) );
@@ -470,9 +470,9 @@
     "return true, if position is at end"
 
     (self == StdInStream) ifTrue:[
-        OperatingSystem hasConsole ifFalse:[
-            ^ true
-        ]
+	OperatingSystem hasConsole ifFalse:[
+	    ^ true
+	]
     ].
 
     "first, wait to avoid blocking on the read.