*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Thu, 13 Oct 2005 14:01:28 +0200
changeset 8957 10f69cc116aa
parent 8956 9a32792d4a92
child 8958 6cb2a9cd649c
*** empty log message ***
Smalltalk.st
--- a/Smalltalk.st	Wed Oct 12 09:52:37 2005 +0200
+++ b/Smalltalk.st	Thu Oct 13 14:01:28 2005 +0200
@@ -2752,10 +2752,12 @@
     OperatingSystem enableCrashSignalInterrupts.
 
     "/ give user a chance to re-customize things
-    "/ reading if smalltalk_r.rc may be suppressed by the
-    "/ -fastStart argument.
+    "/ reading if smalltalk_r.rc may be suppressed by the --faststart argument.
 
     idx := CommandLineArguments indexOf:'--faststart'.
+    idx == 0 ifTrue:[
+        idx := CommandLineArguments indexOf:'--fastStart'.
+    ].
     idx ~~ 0 ifTrue:[
         CommandLineArguments removeAtIndex:idx.
     ] ifFalse:[
@@ -6456,5 +6458,5 @@
 !Smalltalk class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.680 2005-09-30 19:02:47 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Smalltalk.st,v 1.681 2005-10-13 12:01:28 cg Exp $'
 ! !