From 426a87d5deb7d341343bba7eabb95bfdb8c39fbe Mon Sep 17 00:00:00 2001
From: pmai <pmai>
Date: Mon, 11 Jun 2001 14:22:09 +0000
Subject: [PATCH] Fixed a bug in the pretty-printer for vectors, where the
 handling of *print-length* would cause the ellipsis to be printed directly
 adjacent to the previous item, rather than separated via a space, which could
 cause the reader not to detect the abbreviation.

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

diff --git a/code/pprint.lisp b/code/pprint.lisp
index 0ee8511a8..dee8f67ef 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.29 2001/03/13 16:52:14 pw Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.30 2001/06/11 14:22:09 pmai Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -1128,10 +1128,10 @@
 (defun pprint-vector (stream vector)
   (pprint-logical-block (stream nil :prefix "#(" :suffix ")")
     (dotimes (i (length vector))
-      (pprint-pop)
       (unless (zerop i)
 	(write-char #\space stream)
 	(pprint-newline :fill stream))
+      (pprint-pop)
       (output-object (aref vector i) stream))))
 
 (defun pprint-array-contents (stream array)
-- 
GitLab