Skip to content

Commit

Permalink
Skip check on Clasp
Browse files Browse the repository at this point in the history
  • Loading branch information
yitzchak committed Oct 13, 2023
1 parent 11a4890 commit ea84b10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/interface.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
(defmethod closer-mop:validate-superclass ((class ,structure-class-name) (superclass (eql (find-class 'standard-object))))
;; Only STRUCTURE-OBJECT may have STANDARD-OBJECT as a direct superclass, all
;; other structure classes must inherit from STRUCTURE-OBJECT.
(eql (class-name class) ',structure-object-name))
#-clasp (eql (class-name class) ',structure-object-name)
#+clasp t)

(defclass ,structure-object-name ,object-superclasses
()
Expand Down

0 comments on commit ea84b10

Please sign in to comment.