X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fpcl%2Fdocumentation.lisp;h=15ae5d02c5aad143953be9f1a0889377dc2719dd;hb=82653abf5573c22c691e2243b70647ecdaa6aea8;hp=451b45941da201a9dd15c769f67019b105632c71;hpb=13bb6d7a14d408cbf545968107fae797cd1cce77;p=sbcl.git diff --git a/src/pcl/documentation.lisp b/src/pcl/documentation.lisp index 451b459..15ae5d0 100644 --- a/src/pcl/documentation.lisp +++ b/src/pcl/documentation.lisp @@ -25,10 +25,10 @@ ;;; functions, macros, and special forms (defmethod documentation ((x function) (doc-type (eql 't))) - (function-doc x)) + (%fun-doc x)) (defmethod documentation ((x function) (doc-type (eql 'function))) - (function-doc x)) + (%fun-doc x)) (defmethod documentation ((x list) (doc-type (eql 'function))) ;; FIXME: could test harder to see whether it's a SETF function name,