X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=contrib%2Fsb-aclrepl%2Finspect.lisp;h=f6cbcc7883bb922e5a55aa416ad4b59758b8bf69;hb=a8a79584f77a1ca0b1f651c27d219678e44c3f4d;hp=6c3e1965d21625fd7b72452615d1f245c7be0d4c;hpb=4898ef32c639b1c7f4ee13a5ba566ce6debd03e6;p=sbcl.git diff --git a/contrib/sb-aclrepl/inspect.lisp b/contrib/sb-aclrepl/inspect.lisp index 6c3e196..f6cbcc7 100644 --- a/contrib/sb-aclrepl/inspect.lisp +++ b/contrib/sb-aclrepl/inspect.lisp @@ -567,9 +567,6 @@ position with the label if the label is a string." (defmethod inspected-description ((object standard-object)) (format nil "~W" (class-of object))) -(defmethod inspected-description ((object sb-kernel:funcallable-instance)) - (format nil "a funcallable-instance of type ~S" (type-of object))) - (defmethod inspected-description ((object function)) (format nil "~S" object) nil) @@ -807,10 +804,6 @@ cons cells and LIST-TYPE is :normal, :dotted, or :cyclic" (let ((components (inspected-standard-object-parts object))) (list components (length components) :named nil))) -(defmethod inspected-parts ((object sb-kernel:funcallable-instance)) - (let ((components (inspected-standard-object-parts object))) - (list components (length components) :named nil))) - (defmethod inspected-parts ((object condition)) (let ((components (inspected-standard-object-parts object))) (list components (length components) :named nil)))