Skip to content
Snippets Groups Projects
Commit 089340a6 authored by ram's avatar ram
Browse files

Removed hack for printing byte-code objects, now that they have

a debug-info object.
parent 92f6025c
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
;;; Scott Fahlman or slisp-group@cs.cmu.edu. ;;; Scott Fahlman or slisp-group@cs.cmu.edu.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.57 1993/07/26 10:13:34 ram Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.58 1993/08/17 22:32:59 ram Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -1675,10 +1675,7 @@ ...@@ -1675,10 +1675,7 @@
(write-string "Code Object" stream) (write-string "Code Object" stream)
(when dinfo (when dinfo
(write-char #\space stream) (write-char #\space stream)
(if (stringp dinfo) (output-object (c::debug-info-name dinfo) stream)))))))
(prin1 dinfo stream)
(output-object (c::compiled-debug-info-name dinfo)
stream))))))))
(defun output-lra (lra stream) (defun output-lra (lra stream)
(print-unreadable-object (lra stream :identity t) (print-unreadable-object (lra stream :identity t)
......
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