*** empty log message ***
authorStefan Vogel <sv@exept.de>
Wed, 21 Feb 2007 11:11:25 +0100
changeset 10404 61112e05feb7
parent 10403 d960ce472e3a
child 10405 1e4e2f0908e5
*** empty log message ***
ProjectDefinition.st
--- a/ProjectDefinition.st	Tue Feb 20 18:01:38 2007 +0100
+++ b/ProjectDefinition.st	Wed Feb 21 11:11:25 2007 +0100
@@ -2273,7 +2273,7 @@
 
     newStuffHasBeenLoaded := false.
 
-    thisContext isRecursive ifTrue:[^ self].
+    thisContext isRecursive ifTrue:[^ false].
 
 "/ This is too much text when trying to load already loaded prerequisite packages!!
 "/
@@ -2937,7 +2937,7 @@
 
                 cls := (Smalltalk at:eachName asSymbol).
                 cls isNil ifTrue:[
-                    Transcript showCR:('missing class: ',eachName).
+                    Transcript showCR:('ProjectDefinition: missing class: ', eachName).
                 ].
                 cls.
             ]
@@ -3716,7 +3716,7 @@
 !ProjectDefinition class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.147 2007-02-20 17:01:38 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/ProjectDefinition.st,v 1.148 2007-02-21 10:11:25 stefan Exp $'
 ! !
 
 ProjectDefinition initialize!