+1 from me. Today SBCL was complaining about an unset slot in a funcallable class when I was trying to use the MOP dependent maintenance protocol. Turns out this was the culprit:
(defmethod update-dependent ((obj some-metaclass) (dep some-dependent) &rest initargs) (do-something))
It's particularly annoying because there's no obvious typo, I just forgot the c2mop: package prefix.
+1 from me. Today SBCL was complaining about an unset slot in a funcallable class when I was trying to use the MOP dependent maintenance protocol. Turns out this was the culprit:
(defmethod update-dependent ((obj some-metaclass) (dep some-dependent) &rest initargs) do-something) )
(
It's particularly annoying because there's no obvious typo, I just forgot the c2mop: package prefix.