You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no test for handler-case when :no-error is defined and an error is thrown, demonstrating that the :no-error handler is not executed. Example from the repl:
CL-USER> (let ((a nil))
(handler-case (error"foo")
(error () (setq a (cons"error" a)))
(:no-error () (setq a (cons"no error" a))))
a)
("error")
Hey - no chance for me to work on this any soon, too much on my plate at
the moment. I'll gladly accept a PR and then forward it to ANSI-TEST,
but I'll need someone else to write the code.
There is no test for
handler-case
when:no-error
is defined and an error is thrown, demonstrating that the:no-error
handler is not executed. Example from the repl:(Found in farolero#8)
The text was updated successfully, but these errors were encountered: