We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e994dc commit 49945e3Copy full SHA for 49945e3
src/clos/methods.lisp
@@ -15,11 +15,13 @@
15
16
;;; @vlad-km.
17
;;; moved from std-object.
18
+#+nil
19
(defun (setf slot-value) (new-value object slot-name)
20
(if (eq (!class-of (!class-of object)) *the-class-standard-class*)
21
(setf-std-slot-value object slot-name new-value)
22
(setf-slot-value-using-class new-value (!class-of object) object slot-name)))
23
24
+(defsetf slot-value setf-slot-value)
25
26
;;; @vlad-km
27
;;; moved from std-object.lisp
0 commit comments