Skip to content

Commit

Permalink
[fix] in slot-unbound: instance -> class
Browse files Browse the repository at this point in the history
  • Loading branch information
digikar99 committed Mar 31, 2024
1 parent 70c0807 commit 6038dee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion abstract-array-ordered-class.lisp
Expand Up @@ -12,7 +12,7 @@
(defmethod slot-unbound (class (array-class abstract-array-class)
(slot-name (eql 'sb-pcl::%class-precedence-list)))
;; FIXME: Is this correct?
(setf (slot-value instance slot-name)
(setf (slot-value class slot-name)
(list array-class (find-class 't))))

(defmethod closer-mop:validate-superclass
Expand Down

0 comments on commit 6038dee

Please sign in to comment.