From 0bbd4f0eeb1cba6a32232b7b185c08ca0dcaf9d0 Mon Sep 17 00:00:00 2001 From: wlott <wlott> Date: Tue, 28 Jul 1992 01:57:31 +0000 Subject: [PATCH] Fixed OUTPUT-SYMBOL to no longer call CHECK-FOR-CIRCULARITY now that OUTPUT-OBJECT does it for us. This was causing gensyms to print as #1=#1# when *PRINT-CIRCLE* was T. --- code/print.lisp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/code/print.lisp b/code/print.lisp index b77c2937d..c5e1792d4 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.43 1992/06/14 07:08:27 wlott Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/print.lisp,v 1.44 1992/07/28 01:57:31 wlott Exp $") ;;; ;;; ********************************************************************** ;;; @@ -606,13 +606,6 @@ (write-char #\: stream)) ;; Uninterned symbols print with a leading #:. ((null package) - (when (or *print-circle* *print-readably*) - (let ((marker (check-for-circularity object t))) - (case marker - ((:initiate nil)) - (t - (unless (handle-circularity marker stream) - (return-from output-symbol nil)))))) (when (or *print-gensym* *print-readably*) (write-string "#:" stream))) (t -- GitLab