Skip to content
Snippets Groups Projects
Commit 4c09b1c2 authored by rtoy's avatar rtoy
Browse files

Oops. Really do need to write out the space character.

parent 2ce0d24b
No related branches found
No related tags found
No related merge requests found
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
;;; Carnegie Mellon University, and has been placed in the public domain. ;;; Carnegie Mellon University, and has been placed in the public domain.
;;; ;;;
(ext:file-comment (ext:file-comment
"$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.38 2004/08/30 21:40:17 rtoy Exp $") "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/pprint.lisp,v 1.39 2004/08/31 19:36:36 rtoy Exp $")
;;; ;;;
;;; ********************************************************************** ;;; **********************************************************************
;;; ;;;
...@@ -907,6 +907,7 @@ ...@@ -907,6 +907,7 @@
(loop (loop
(output-object (pprint-pop) stream) (output-object (pprint-pop) stream)
(pprint-exit-if-list-exhausted) (pprint-exit-if-list-exhausted)
(write-char #\space stream)
(pprint-tab :section-relative 0 (or tabsize 16) stream) (pprint-tab :section-relative 0 (or tabsize 16) stream)
(pprint-newline :fill stream)))) (pprint-newline :fill stream))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment