smalltalk.rc
changeset 663 6c2430ac1d44
parent 656 33c547d1a706
child 664 6c03c2633bcb
--- a/smalltalk.rc	Tue Jul 05 11:19:55 2005 +0200
+++ b/smalltalk.rc	Thu Oct 13 14:04:00 2005 +0200
@@ -229,7 +229,9 @@
 
 (buildClasses
  or:[(args includes:'--noBanner')
- or:[args includes:'--quick']]) ifFalse:[
+ or:[args includes:'--quick'
+ or:[args includes:'--faststart'
+ or:[args includes:'--fastStart']]]]) ifFalse:[
     Smalltalk fileIn:'showBanner.rc'.
 ].
 
@@ -265,7 +267,10 @@
 	needToReactivate := false
     ].
 
-    (Smalltalk commandLineArguments includes:'--quick') ifFalse:[
+    ((Smalltalk commandLineArguments includes:'--quick')
+    or:[ (Smalltalk commandLineArguments includes:'--faststart')
+    or:[ (Smalltalk commandLineArguments includes:'--fastStart')
+    ]]) ifFalse:[
 	'smalltalk.rc [info]: installing autoloaded classes...' infoPrintCR.
 	Smalltalk installAutoloadedClasses.
     ].
@@ -429,7 +434,10 @@
 
 (Smalltalk isStandAloneApp not and:[Display notNil]) ifTrue:[
     ((Smalltalk commandLineArguments includes:'--noLicenceBox')
-     or:[Smalltalk commandLineArguments includes:'--quick']) ifFalse:[
+     or:[(Smalltalk commandLineArguments includes:'--quick')
+     or:[(Smalltalk commandLineArguments includes:'--faststart')
+     or:[(Smalltalk commandLineArguments includes:'--fastStart')
+    ]]]) ifFalse:[
 	Smalltalk addStartBlock:[
 	    'smalltalk.rc [info]: show licence conditions...' infoPrintCR.
 	    LicenceBox autoload.