*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 16 Oct 2001 09:46:36 +0200
changeset 6095 fd28101edf09
parent 6094 79ebf84b51bd
child 6096 64e9b08f4bc4
*** empty log message ***
Win32OperatingSystem.st
--- a/Win32OperatingSystem.st	Fri Oct 12 15:03:27 2001 +0200
+++ b/Win32OperatingSystem.st	Tue Oct 16 09:46:36 2001 +0200
@@ -51,6 +51,7 @@
 #  define MSDOS_LIKE
 # endif
 # undef UNIX_LIKE       /* oops - we were too optimistic - no OS */
+
 # ifdef i386
 #  ifndef _X86_
 #   define _X86_
@@ -5534,7 +5535,7 @@
     p := Smalltalk commandName.
     p notNil ifTrue:[
 	p := p asFilename directory constructString:'packages'.
-        (pPath includes:p) ifFalse:[
+	(pPath includes:p) ifFalse:[
 	    pPath add:p.
 	]
     ].
@@ -5583,7 +5584,7 @@
     p := Smalltalk commandName.
     p notNil ifTrue:[
 	p := p asFilename directoryName.
-        (sysPath includes:p) ifFalse:[
+	(sysPath includes:p) ifFalse:[
 	    sysPath add:p.
 	]
     ].
@@ -8156,6 +8157,6 @@
 !Win32OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.94 2001-08-21 12:18:16 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.95 2001-10-16 07:46:36 cg Exp $'
 ! !
 Win32OperatingSystem initialize!