X-Git-Url: http://repo.macrolet.net/gitweb/?a=blobdiff_plain;f=src%2Fcode%2Fdescribe.lisp;h=20a7548053db7be941654bf57dd7463ba197d02b;hb=835768a81dad03b7eb94c2058e234413ba066396;hp=cdbfb3605a2f61c30779de09620f493c77cf388e;hpb=648b48d2406f6d6f2bf341bf8ed350aac85398d0;p=sbcl.git diff --git a/src/code/describe.lisp b/src/code/describe.lisp index cdbfb36..20a7548 100644 --- a/src/code/describe.lisp +++ b/src/code/describe.lisp @@ -90,7 +90,7 @@ "~&~@" (hash-table-rehash-size x) (hash-table-rehash-threshold x)) - (fresh-line) + (fresh-line s) (pprint-logical-block (s nil) (let ((count (hash-table-count x))) (format s "It holds ~S key/value pair~:P~:[: ~2I~_~;.~]" @@ -328,7 +328,7 @@ ;; * NIL, in which case there's nothing to see here, move along. (when (eq (info :type :kind x) :defined) (format s "~&It names a type specifier.")) - (let ((symbol-named-class (find-classoid x nil))) + (let ((symbol-named-class (find-class x nil))) (when symbol-named-class (format s "~&It names a class ~A." symbol-named-class) (describe symbol-named-class s)))