Skip to content
Snippets Groups Projects
Commit 24c0e897 authored by wlott's avatar wlott
Browse files

typo

parent 5d0c23a7
No related branches found
No related tags found
No related merge requests found
......@@ -7,11 +7,11 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;;
(ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.22 1991/09/13 06:21:43 wlott Exp $")
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.23 1991/09/13 06:24:09 wlott Exp $")
;;;
;;; **********************************************************************
;;;
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.22 1991/09/13 06:21:43 wlott Exp $
;;; $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.23 1991/09/13 06:24:09 wlott Exp $
;;;
;;; CMU Common Lisp printer.
;;;
......@@ -1345,10 +1345,10 @@
(write-string "Bogus Code Object" stream))
(t
(write-string "Code Object" stream)
(when dinfo)
(write-char #\space stream)
(output-object (c::compiled-debug-info-name dinfo)
stream)))))
(when dinfo
(write-char #\space stream)
(output-object (c::compiled-debug-info-name dinfo)
stream))))))
((#.vm:function-header-type #.vm:closure-function-header-type)
(output-function-object object stream))
(#.vm:return-pc-header-type
......
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