Win32OperatingSystem.st
changeset 8881 53e94478133f
parent 8843 373303414c54
child 8889 934feccecfb3
--- a/Win32OperatingSystem.st	Mon May 30 17:10:13 2005 +0200
+++ b/Win32OperatingSystem.st	Tue May 31 20:48:38 2005 +0200
@@ -8972,9 +8972,7 @@
 
 			    cp = cp0;
 			    while (*cp++) ;;
-			    s = __MKSTRING(cp0);
-			    __ArrayInstPtr(stringArray)->a_element[i] = s;
-			    __STORE(stringArray, s);
+			    s = __MKSTRING(cp0); __ArrayInstPtr(stringArray)->a_element[i] = s; __STORE(stringArray, s);
 			    cp++;
 			    cp0 = cp;
 			    i++;
@@ -9277,7 +9275,7 @@
 	RETURN (nil);
     }
 
-    __INST(handle) = t = __MKEXTERNALADDRESS(key); __STORE(self, t);
+    t = __MKEXTERNALADDRESS(key); __INST(handle) = t; __STORE(self, t);
 %}.
 
     "Created: / 19.5.1999 / 21:45:05 / cg"
@@ -9297,7 +9295,7 @@
 !
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.179 2005-04-14 13:07:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.180 2005-05-31 18:48:38 cg Exp $'
 ! !
 
 !Win32OperatingSystem::Win32FILEHandle methodsFor:'release'!
@@ -9324,7 +9322,7 @@
 !
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.179 2005-04-14 13:07:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.180 2005-05-31 18:48:38 cg Exp $'
 ! !
 
 !Win32OperatingSystem::Win32Handle methodsFor:'io'!
@@ -10344,7 +10342,7 @@
 !Win32OperatingSystem class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.179 2005-04-14 13:07:11 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Win32OperatingSystem.st,v 1.180 2005-05-31 18:48:38 cg Exp $'
 ! !
 
 Win32OperatingSystem initialize!