Autoload.st
changeset 7744 eeddeb7883af
parent 7574 8041a5795bbf
child 8185 e09efa26b6f8
--- a/Autoload.st	Tue Nov 11 11:59:00 2003 +0100
+++ b/Autoload.st	Tue Nov 11 12:13:55 2003 +0100
@@ -217,12 +217,17 @@
         ].
     ].
     nm notNil ifTrue:[
-        aStream cr; nextPutLine:'When accessed, ' , myName , ' will automatically be loaded'.
-        aStream nextPutLine:'from: '; spaces:4; nextPutAll:nm.
+        aStream 
+            cr; 
+            nextPutLine:'When accessed, ' , myName , ' will automatically be loaded';
+            nextPutLine:'from: '; spaces:4; nextPutAll:nm.
+
         nm asFilename isSymbolicLink ifTrue:[
             aStream cr; cr.
-            aStream nextPutLine:'which is a link to: '; spaces:4; 
-                    nextPutAll:(nm asFilename linkInfo path).
+            aStream 
+                nextPutLine:'which is a link to: '; 
+                spaces:4; 
+                nextPutAll:(nm asFilename linkInfo path).
         ]
     ] ifFalse:[
         package := self package.
@@ -646,7 +651,7 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.119 2003-08-25 11:44:36 tm Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.120 2003-11-11 11:13:55 cg Exp $'
 ! !
 
 Autoload initialize!