repair to exn doc repairs

This commit is contained in:
Matthew Flatt 2012-07-06 13:59:50 -06:00
parent 75f710dc62
commit 1d378186f4

View File

@ -374,7 +374,7 @@ with a @tech{continuation barrier}; see @secref["prompt-model"] and
Any procedure that takes one argument can be an exception handler.
Normally, an exception handler escapes from the context of the
@racket[raise] call via @racket[abort] or some other escape
@racket[raise] call via @racket[abort-current-continuation] or some other escape
mechanism. To propagate an exception to the ``previous'' exception
handler---that is, the exception handler associated with the rest of
the continuation after the point where the called exception handler
@ -389,8 +389,9 @@ is used.
A call to an exception handler is @racket[parameterize-break]ed to
disable breaks, and it is wrapped with
@racket[call-with-exception-handler] to install an exception handler
that reports both the original and newly raised exceptions before
@racket[abort]ing.}
that reports both the original and newly raised exceptions via the
@tech{error display handler} and then escapes via the @tech{error
escape handler}.}
@defparam[uncaught-exception-handler f (any/c . -> . any)]{