From 5b37fd20f7286834e90f0fb5ca194920579f507b Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Fri, 10 Sep 2004 14:42:09 +0000
Subject: [PATCH] When printing arrays readably, we don't need to do anything
 special if the array element-type is T.

---
 code/pprint.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/pprint.lisp b/code/pprint.lisp
index 5df967f77..7e020e887 100644
--- a/code/pprint.lisp
+++ b/code/pprint.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.41 2004/09/02 18:26:31 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.42 2004/09/10 14:42:09 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1139,7 +1139,7 @@
 	     (stringp array)
 	     (bit-vector-p array))
 	 (output-ugly-object array stream))
-	(*print-readably*
+	((and *print-readably* (not (eq (array-element-type array) t)))
 	 (pprint-raw-array stream array))
 	((vectorp array)
 	 (pprint-vector stream array))
-- 
GitLab