# HG changeset patch # User Claus Gittinger # Date 1268480217 -3600 # Node ID f05a918e7e5742bdccbd7f1aded462c3046bf7d6 # Parent 1d1ebb922d1370ecb31cb4f1815a3039ecb050dd changed: #autoload diff -r 1d1ebb922d13 -r f05a918e7e57 Autoload.st --- a/Autoload.st Sat Mar 13 11:31:25 2010 +0100 +++ b/Autoload.st Sat Mar 13 12:36:57 2010 +0100 @@ -443,7 +443,9 @@ " AutoloadFailedSignal raiseRequestWith:self - errorString:('autoload of ' , myName , ' failed'). + errorString:('autoload of %1 failed (%2)' + bindWith:myName + with:(newClass isNil ifTrue:['nil result'] ifFalse:['still unloaded'])). ^ nil ]. @@ -761,11 +763,11 @@ !Autoload class methodsFor:'documentation'! version - ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.156 2010-02-05 13:00:22 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.157 2010-03-13 11:36:57 cg Exp $' ! version_CVS - ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.156 2010-02-05 13:00:22 cg Exp $' + ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.157 2010-03-13 11:36:57 cg Exp $' ! ! Autoload initialize!