# HG changeset patch # User Claus Gittinger # Date 1134483519 -3600 # Node ID 2050356eb7a8dd76983c7e99de28e952bc0f33b5 # Parent 145dbf8ca385bb595201ff18063a5918c86b9e42 *** empty log message *** diff -r 145dbf8ca385 -r 2050356eb7a8 private.rc --- a/private.rc Tue Dec 06 16:53:42 2005 +0100 +++ b/private.rc Tue Dec 13 15:18:39 2005 +0100 @@ -226,7 +226,10 @@ Text new. "/ to avoid visible messages in minitalk NewLauncher open. - (Smalltalk commandLineArguments includes:'--quick') ifFalse:[ + ((Smalltalk commandLineArguments includes:'--quick') + or:[(Smalltalk commandLineArguments includes:'--faststart') + or:[(Smalltalk commandLineArguments includes:'--fastStart')]]) + ifFalse:[ "/ "/ disable this if you don't like the other window to come up "/ diff -r 145dbf8ca385 -r 2050356eb7a8 smalltalk.rc --- a/smalltalk.rc Tue Dec 06 16:53:42 2005 +0100 +++ b/smalltalk.rc Tue Dec 13 15:18:39 2005 +0100 @@ -111,8 +111,8 @@ Smalltalk systemPath:(Smalltalk systemPath remove:path; yourself). ] ]. -'../../libbasic' asFilename exists ifTrue:[ - Smalltalk systemPath addFirst:'../..'. +'../../../stx/libbasic' asFilename exists ifTrue:[ + Smalltalk systemPath addFirst:'../../../stx'. ]. "/ but, the current directory should always be first... @@ -129,7 +129,7 @@ "/ if running in the development environment, "/ only use the local packages. "/ - '../../projects/smalltalk' asFilename exists ifTrue:[ + '../../../stx/projects/smalltalk' asFilename exists ifTrue:[ Smalltalk packagePath removeAll; add:'../../..'. 'smalltalk.rc [info]: setting packagePath for local operation' printCR. ].