From: Kevin M. Rosenberg Date: Mon, 16 Sep 2002 08:44:09 +0000 (+0000) Subject: r2707: Auto commit for Debian build X-Git-Tag: v2.5.5~172 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=716e1598d6300486919374ac582f6bb5a5f1b017 r2707: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index 37a2bd1..1100436 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,8 @@ cl-lml (1.0.2-1) unstable; urgency=low * Remove defconstants because of trouble with SBCL thinking that constants are being redefined + * Fix indent-spaces function + -- Kevin M. Rosenberg Mon, 16 Sep 2002 02:17:48 -0600 cl-lml (1.0.1-1) unstable; urgency=low diff --git a/utils.cl b/utils.cl index dd86f0c..8dc05c1 100644 --- a/utils.cl +++ b/utils.cl @@ -1,4 +1,4 @@ -;;; $Id: utils.cl,v 1.4 2002/09/16 08:38:36 kevin Exp $ +;;; $Id: utils.cl,v 1.5 2002/09/16 08:44:09 kevin Exp $ ;;;; ;;;; General purpose utilities @@ -23,7 +23,7 @@ (defun indent-spaces (n &optional (stream *standard-output*)) "Indent n*2 spaces to output stream" - (let ((fmt (format nil "~~~D~~T" (+ n n)))) + (let ((fmt (format nil "~~~DT" (+ n n)))) (format stream fmt))) (defun print-file-contents (file &optional (strm *standard-output*))