Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2025
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. (handler-bind ((error #'(lambda (condition)
  2. (push (format nil "~a" condition) *queue*)
  3. (invoke-restart 'ignore)
  4. )))
  5. ;; (foo a)
  6. (error "a")
  7. (error "a")
  8. (error "a"))
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement