Skip to content
Snippets Groups Projects
Commit 1b00c6e1 authored by ram's avatar ram
Browse files

Changed describe-function-compiled to work when the debug args are NIL

(i.e. omitted to save space.)
parent cd1b1aeb
No related branches found
No related tags found
No related merge requests found
......@@ -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.9 1991/02/08 13:32:09 ram Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/describe.lisp,v 1.10 1991/05/23 17:02:03 ram Exp $")
;;;
;;; **********************************************************************
;;;
......@@ -250,8 +250,10 @@
(defun describe-function-compiled (x macro-p)
(let ((args (%function-header-arglist x)))
(describe-function-arg-list
*current-describe-object* (string= args "()") (write-string args)))
(if args
(describe-function-arg-list
*current-describe-object* (string= args "()") (write-string args))
(format t "~&No argument information available.")))
(unless macro-p
(let ((name (%function-header-name x)))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment