Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions level-1/l1-clos.lisp
Original file line number Diff line number Diff line change
Expand Up @@ -1822,6 +1822,9 @@ changing its name to ~s may have serious consequences." class new))
(error "~S is not a funcallable instance" funcallable-instance))
(unless (functionp function)
(error "~S is not a function" function))
(lfun-bits funcallable-instance
(logior (lfun-bits funcallable-instance)
(logand (lfun-bits function) (1- (expt 2 16)))))
(setf (%gf-dcode funcallable-instance) function))

(defmethod reinitialize-instance ((slotd slot-definition) &key &allow-other-keys)
Expand Down