Re: [racket-users] problem with current-error-port in scribble interaction

2019-06-27 Thread Ryan Culpepper
The `uncaught-exception-handler` parameter controls the *bottom* of the exception handler stack, so it won't override the exception handler installed by Scribble's `interaction` form. If you use `with-handlers` (or `call-with-exception-handler`) instead, it should work. The

[racket-users] problem with current-error-port in scribble interaction

2019-06-27 Thread Jos Koot
Hi, The attachments are assumed to reside in the same directory and are reduced forms of more elaborated code. In module try-rkt I have code that captures errors such as to avoid an error-message being written on the current-error-port, to retrieve the error-message and to return normally. This