smalltalk.rc
changeset 1424 602b53d13b37
parent 1422 6759e2538650
child 1425 1a8a4bb13ac0
equal deleted inserted replaced
1422:6759e2538650 1424:602b53d13b37
   836 "/ load initial packages
   836 "/ load initial packages
   837 "/
   837 "/
   838 UserPreferences current autoloadedPackages notEmpty ifTrue:[
   838 UserPreferences current autoloadedPackages notEmpty ifTrue:[
   839     'smalltalk.rc [info]: loading autoloaded packages...' infoPrintCR.
   839     'smalltalk.rc [info]: loading autoloaded packages...' infoPrintCR.
   840     (UserPreferences current autoloadedPackages) do:[:eachPackage |
   840     (UserPreferences current autoloadedPackages) do:[:eachPackage |
   841 	Smalltalk loadPackage:eachPackage
   841 	Smalltalk showSplashMessage:('Autoloading ',eachPackage,'...').
   842     ].
   842 	Smalltalk loadPackage:eachPackage.
       
   843     ].
       
   844     Smalltalk showSplashMessage:('done.').
   843 ].
   845 ].
   844 
   846 
   845 "/
   847 "/
   846 "/ save an initial image; this will speedup the next startup
   848 "/ save an initial image; this will speedup the next startup
   847 "/ (since all autoload-stuff will already be initialized)
   849 "/ (since all autoload-stuff will already be initialized)