Smalltalk.st
changeset 1286 4270a0b4917d
parent 1222 b77fbb5457fb
child 1299 8f49ec04c9f8
--- a/Smalltalk.st	Thu Apr 25 13:16:22 1996 +0200
+++ b/Smalltalk.st	Thu Apr 25 18:02:18 1996 +0200
@@ -50,60 +50,63 @@
     It may change to become a subclass of collection at some time ...
 
 
-    Instance variables:
-					none - all handling is done in the VM
-
-    Class variables:
-
-	ExitBlocks      <Collection>    blocks to evaluate before system is
-					left. Not currently used (GNU-ST compatibility).
-
-	SystemPath      <Collection>    path to search for system files (sources, bitmaps etc)
-					Set to a default here, but typically changed from some
-					startup.rc file
-
-	StartupClass    <Class>         
-	StartupSelector <Symbol>        
-	StartupArguments <Array>
-					class and selector, where the system starts up
-					(right after VM initialization)
-					If an image is saved while this is nonNil, the image will come up
-					there.
-
-	CommandLineArguments <Array>    command line broken into words
-
-	SilentLoading   <Boolean>       suppresses messages during fileIn and in compiler
-					(can be set to true from a customized main)
-
-	LogDoits        <Boolean>       if true, doits are also logged in the changes
-					file. Default is false, since the changes file
-					may become huge if every tiny doIt is saved there ...
-
-	LoadBinaries    <Boolean>       if true, we attempt to load classes rom a binary
-					file, if present. If false, this is always suppressed.
-
-	ImageStartTime  <AbsoluteTime>  timestamp when this system was started the very first time
-					(i.e. the time of the initial start without an image)
-
-	ImageRestartTime
-			<AbsoluteTIme>  timestamp when this image was started
+    [Instance variables:]
+                                        none - all handling is done in the VM
+
+    [Class variables:]
+
+        ExitBlocks      <Collection>    blocks to evaluate before system is
+                                        left. Not currently used (GNU-ST compatibility).
+
+        SystemPath      <Collection>    path to search for system files (sources, bitmaps etc)
+                                        Set to a default here, but typically changed from some
+                                        startup.rc file
+
+        StartupClass    <Class>         
+        StartupSelector <Symbol>        
+        StartupArguments <Array>
+                                        class and selector, where the system starts up
+                                        (right after VM initialization)
+                                        If an image is saved while this is nonNil, the image will come up
+                                        there.
+
+        CommandLineArguments <Array>    command line broken into words
+
+        SilentLoading   <Boolean>       suppresses messages during fileIn and in compiler
+                                        (can be set to true from a customized main)
+
+        LogDoits        <Boolean>       if true, doits are also logged in the changes
+                                        file. Default is false, since the changes file
+                                        may become huge if every tiny doIt is saved there ...
+
+        LoadBinaries    <Boolean>       if true, we attempt to load classes rom a binary
+                                        file, if present. If false, this is always suppressed.
+
+        ImageStartTime  <AbsoluteTime>  timestamp when this system was started the very first time
+                                        (i.e. the time of the initial start without an image)
+
+        ImageRestartTime
+                        <AbsoluteTIme>  timestamp when this image was started
 
 
 
     strictly private classVariables (helpers):
 
-	CachedClasses   <Collection>    known classes (cached for faster class enumeration)
-
-	CachedAbbreviations
-			<Dictionary>    className to filename mappings
-
-	SourcePath      <Collection>    cached names of really existing directories
-	BitmapPath                      These are remembered, since in NFS systems,
-	ResourcePath                    the time to lookup files may become long
-	BinaryPath                      (especially, if some directories are on machines
-	FileInPath                      which are not up ...). Therefore, the set of really
-					existing directories is cached when the SystemPath
-					is walked the first time.
+        CachedClasses   <Collection>    known classes (cached for faster class enumeration)
+
+        CachedAbbreviations
+                        <Dictionary>    className to filename mappings
+
+        SourcePath      <Collection>    cached names of really existing directories
+        BitmapPath                      These are remembered, since in NFS systems,
+        ResourcePath                    the time to lookup files may become long
+        BinaryPath                      (especially, if some directories are on machines
+        FileInPath                      which are not up ...). Therefore, the set of really
+                                        existing directories is cached when the SystemPath
+                                        is walked the first time.
+
+    [author:]
+        Claus Gittinger
 "
 ! !
 
@@ -2994,5 +2997,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.135 1996-04-19 10:49:01 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.136 1996-04-25 16:02:18 cg Exp $'
 ! !