return value from doesNotUnderstand (so handler can return a value)
authorClaus Gittinger <cg@exept.de>
Tue, 19 Dec 1995 20:13:20 +0100
changeset 789 155eca125ef0
parent 788 e80f1c42b87b
child 790 73131541a373
return value from doesNotUnderstand (so handler can return a value)
Autoload.st
--- a/Autoload.st	Tue Dec 19 20:09:03 1995 +0100
+++ b/Autoload.st	Tue Dec 19 20:13:20 1995 +0100
@@ -294,7 +294,7 @@
 		 withArguments:(aMessage arguments)
 	]
     ].
-    super doesNotUnderstand:aMessage
+    ^ super doesNotUnderstand:aMessage
 !
 
 new
@@ -362,6 +362,6 @@
 !Autoload class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.36 1995-12-12 12:55:20 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Autoload.st,v 1.37 1995-12-19 19:13:20 cg Exp $'
 ! !
 Autoload initialize!