X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpcl%2Flow.lisp;h=383d113426964533c418ec569f19893e32c663b5;hb=e27303999070c06c788a0e1359ee4b0900186aa1;hp=f0758231a039e3fda9c0ed19591fe4d42b015196;hpb=0dcc957ae6bf24809fda82fd59c134e70058c42a;p=sbcl.git diff --git a/src/pcl/low.lisp b/src/pcl/low.lisp index f075823..383d113 100644 --- a/src/pcl/low.lisp +++ b/src/pcl/low.lisp @@ -297,14 +297,14 @@ (sb-kernel:dsd-name slotd)) (defun structure-slotd-accessor-symbol (slotd) - (sb-kernel:dsd-accessor slotd)) + (sb-kernel:dsd-accessor-name slotd)) (defun structure-slotd-reader-function (slotd) - (fdefinition (sb-kernel:dsd-accessor slotd))) + (fdefinition (sb-kernel:dsd-accessor-name slotd))) (defun structure-slotd-writer-function (slotd) (unless (sb-kernel:dsd-read-only slotd) - (fdefinition `(setf ,(sb-kernel:dsd-accessor slotd))))) + (fdefinition `(setf ,(sb-kernel:dsd-accessor-name slotd))))) (defun structure-slotd-type (slotd) (sb-kernel:dsd-type slotd))