non continuable condition should not return

Issue #190 resolved
Takashi Kato repo owner created an issue

This should not return

(with-exception-handler
 (lambda (k) (display k) (newline))
 (lambda ()
   (with-exception-handler
    (lambda (k) #t)
    (lambda ()
      (raise 'a)))))
(display 'ng) (newline)

But displays ng

Comments (1)

  1. Log in to comment