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
The conditions in this file are defined without a parenty-type, they are direct subclass of condition. That means that error handlers (for example ignore-errors), which expect a condition of type error, don't handle these conditions.
They all should be made to inherit from error, e.g.
(define-condition illegal-opcode (error)
....
The text was updated successfully, but these errors were encountered:
cl-6502/src/conditions.lisp
Line 3 in 46628d6
The conditions in this file are defined without a parenty-type, they are direct subclass of condition. That means that error handlers (for example ignore-errors), which expect a condition of type error, don't handle these conditions.
They all should be made to inherit from error, e.g.
The text was updated successfully, but these errors were encountered: