[go: up one dir, main page]

Stack overflow with with-exception-handler

There is something wrong happening to with-exception-handler in this case:

(with-exception-handler
  (lambda (ex) (raise (condition)))
  (lambda () (raise (condition))))

The exception should bubble up to the repl (or whatever), but instead it just eats up all stack space.