r2707: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 16 Sep 2002 08:44:09 +0000 (08:44 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Mon, 16 Sep 2002 08:44:09 +0000 (08:44 +0000)
debian/changelog
utils.cl

index 37a2bd1efa51c42d2b5d3920693fac50a24a6130..11004365df80c087c17f7cec39a4a7d37b48b299 100644 (file)
@@ -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 <kmr@debian.org>  Mon, 16 Sep 2002 02:17:48 -0600
 
 cl-lml (1.0.1-1) unstable; urgency=low
index dd86f0cc623cd1fdbeee0c325eff9b45fa96755e..8dc05c1f248461addceb72eeba3fb24c8fdcba42 100644 (file)
--- 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*))