*** empty log message ***
authorClaus Gittinger <cg@exept.de>
Tue, 13 Dec 2005 15:18:39 +0100
changeset 668 2050356eb7a8
parent 667 145dbf8ca385
child 669 95d1e3c57d95
*** empty log message ***
private.rc
smalltalk.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
 	"/
--- 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.
     ].