X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdescribe.lisp;h=79de2f86a518498f6db0b4391906909fabe91625;hb=05e9b542c5700416b8fd9f3ba9bb91bb6ab84b3a;hp=fe217a44f7b4f1fdd8934b73b905d6c2a17e8d82;hpb=b9a1b17b079d315c1eec194eb4f93f7d058b24cf;p=sbcl.git diff --git a/src/code/describe.lisp b/src/code/describe.lisp index fe217a4..79de2f8 100644 --- a/src/code/describe.lisp +++ b/src/code/describe.lisp @@ -353,10 +353,13 @@ (%describe-doc x s 'type "Type") (%describe-doc x s 'setf "Setf macro") (dolist (assoc (info :random-documentation :stuff x)) - (format s - "~&~@" - (car assoc) - (cdr assoc))) + (let ((type (car assoc))) + (format s + "~&~@" + (case type + ((optimize) "optimize quality") + (t (car assoc))) + (cdr assoc)))) ;; Mention the associated type information, if any. ;;