From 50db84ba1704d03eda2f084d706cfc4b220447ab Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Fri, 9 May 2003 05:12:15 +0000 Subject: [PATCH] r4887: Auto commit for Debian build --- debian/changelog | 6 ++++++ io.lisp | 17 ++++------------- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/debian/changelog b/debian/changelog index 5415072..f3f3f89 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-kmrcl (1.43-1) unstable; urgency=low + + * New upstream + + -- Kevin M. Rosenberg Thu, 8 May 2003 23:08:21 -0600 + cl-kmrcl (1.42-1) unstable; urgency=low * New upstream diff --git a/io.lisp b/io.lisp index 753cc44..008c46e 100644 --- a/io.lisp +++ b/io.lisp @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id: io.lisp,v 1.1 2003/04/28 23:51:59 kevin Exp $ +;;;; $Id: io.lisp,v 1.2 2003/05/09 05:12:15 kevin Exp $ ;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -55,26 +55,17 @@ :if-exists :supersede) (stream-subst old new in out)))) - (defun indent-spaces (n &optional (stream *standard-output*)) "Indent n*2 spaces to output stream" - (when (numberp n) - (let ((fmt (format nil "~~~DT" (+ n n)))) - (format stream fmt)))) + (write-string (make-string (+ n n) #\space) stream)) (defun print-list (l &optional (output *standard-output*)) "Print a list to a stream" - (if (consp l) - (progn - (mapcar (lambda (x) (princ x output) (princ #\newline output)) l) - t) - nil)) + (format output "~{~A~%~}" l)) (defun print-rows (rows &optional (ostrm *standard-output*)) "Print a list of list rows to a stream" - (dolist (r rows) - (mapcar (lambda (a) (princ a ostrm) (princ #\space ostrm)) r) - (terpri ostrm))) + (dolist (r rows) (format ostrm "~{~A~^ ~}~%" r))) ;; Buffered stream substitute -- 2.34.1