diff --git a/code/pprint.lisp b/code/pprint.lisp
index 0ee8511a884a1fce6077845a16985faa1577f22c..dee8f67ef4e401a5b4294d52498fc3f0aa457807 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)