From 089340a6cfad64d2f2a4ea0eb024eb1567d48b57 Mon Sep 17 00:00:00 2001 From: ram <ram> Date: Tue, 17 Aug 1993 22:32:59 +0000 Subject: [PATCH] Removed hack for printing byte-code objects, now that they have a debug-info object. --- code/print.lisp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index 446ce9574..c7ba1531b 100644 --- a/code/print.lisp +++ b/code/print.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/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 @@ (write-string "Code Object" stream) (when dinfo (write-char #\space stream) - (if (stringp dinfo) - (prin1 dinfo stream) - (output-object (c::compiled-debug-info-name dinfo) - stream)))))))) + (output-object (c::debug-info-name dinfo) stream))))))) (defun output-lra (lra stream) (print-unreadable-object (lra stream :identity t) -- GitLab