Exception.st
changeset 3179 f22e94c6ae83
parent 3111 a23fa6d08ce7
child 3509 167b22eeac33
--- a/Exception.st	Fri Jan 16 15:57:23 1998 +0100
+++ b/Exception.st	Fri Jan 16 15:58:23 1998 +0100
@@ -798,12 +798,12 @@
     "/ If nil, then there is no handler and we can directly proceed
     "/ to the unhandled code below.
 
-    lastHandler notNil ifTrue:[
-        theContext := lastHandler.
-        theContext := lastHandler findNextContextWithSelector:#'handle:do:' or:#'handle:from:do:' or:nil.
-    ] ifFalse:[
-        theContext := firstHandler
-    ].
+"/    lastHandler notNil ifTrue:[
+"/        theContext := lastHandler.
+"/        theContext := lastHandler findNextContextWithSelector:#'handle:do:' or:#'handle:from:do:' or:nil.
+"/    ] ifFalse:[
+        theContext := firstHandler.
+"/    ].
 
     "/ remember if there was any handler
     "/ for the better errorString (unhandled vs. rejected exception)
@@ -944,6 +944,6 @@
 !Exception class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.62 1997-11-15 14:06:12 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/Exception.st,v 1.63 1998-01-16 14:58:23 cg Exp $'
 ! !
 Exception initialize!