original commit: 961d587852c4dda1d7ef70007eea27704bef7a2f
This commit is contained in:
Matthew Flatt 2001-05-21 14:33:15 +00:00
parent ca05c59692
commit cbe2acae13

View File

@ -47,7 +47,8 @@
(if (or error-display error-result)
(with-handlers ([void
(lambda (exn)
((or error-display (error-display-handler))
((or error-display (lambda (x)
((error-display-handler) x exn)))
(exn-message exn))
(if error-result
(error-result)
@ -73,7 +74,8 @@
(if error-display
(with-handlers ([void
(lambda (exn)
((or error-display (error-display-handler))
((or error-display (lambda (x)
((error-display-handler) x exn)))
(exn-message exn))
(k (if error-result
(error-result)