# HG changeset patch # User Claus Gittinger # Date 1459428632 -7200 # Node ID bfdc1571fffa6dec8acfaa4fef5ab513e2f897e8 # Parent 1a8a4bb13ac0cbef9af8986578a23ae5db0c961e *** empty log message *** diff -r 1a8a4bb13ac0 -r bfdc1571fffa smalltalk.rc --- a/smalltalk.rc Thu Mar 31 14:36:08 2016 +0200 +++ b/smalltalk.rc Thu Mar 31 14:50:32 2016 +0200 @@ -836,6 +836,9 @@ "/ load initial packages "/ UserPreferences current autoloadedPackages notEmpty ifTrue:[ + (Smalltalk commandLineArguments includes:'--´noautoload') ifTrue:[ + 'smalltalk.rc [info]: autoloaded packages suppressed.' infoPrintCR. + ] ifFalse:[ 'smalltalk.rc [info]: loading autoloaded packages...' infoPrintCR. (UserPreferences current autoloadedPackages) do:[:eachPackage | Smalltalk showSplashMessage:('Autoloading ',eachPackage,'...'). @@ -846,6 +849,7 @@ ] ]. Smalltalk showSplashMessage:('done.'). + ] ]. "/