From d41aab065e7f3469aced593afb58aae8c98c9bf1 Mon Sep 17 00:00:00 2001
From: ram <ram>
Date: Fri, 20 Dec 1991 18:33:22 +0000
Subject: [PATCH] Don't print "NIL documentation".

---
 code/describe.lisp | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/code/describe.lisp b/code/describe.lisp
index f64b6a594..7e00943a8 100644
--- a/code/describe.lisp
+++ b/code/describe.lisp
@@ -7,7 +7,7 @@
 ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.14 1991/12/20 02:44:05 ram Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.15 1991/12/20 18:33:22 ram Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -197,7 +197,8 @@
   (when (and name (typep name '(or symbol cons)))
     (let ((doc (documentation name kind)))
       (when doc
-	(format t "~&~@(~A~) documentation:~&  ~A" kind-doc doc)))))
+	(format t "~&~@(~A documentation:~)~&  ~A"
+		(or kind-doc kind) doc)))))
 
 
 ;;; DESCRIBE-FUNCTION-NAME  --  Internal
-- 
GitLab