r3972: Auto commit for Debian build
authorKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 6 Feb 2003 23:25:52 +0000 (23:25 +0000)
committerKevin M. Rosenberg <kevin@rosenberg.net>
Thu, 6 Feb 2003 23:25:52 +0000 (23:25 +0000)
debian/changelog
utils.lisp

index a0ee5be4b01fbcc1cf5c3f88796a9f55e17b8e4e..d92c054efcbbf5a96b489270beb6642e114bca68 100644 (file)
@@ -1,3 +1,9 @@
+cl-lml (2.2.1-1) unstable; urgency=low
+
+  * Upstream change
+
+ -- Kevin M. Rosenberg <kmr@debian.org>  Thu,  6 Feb 2003 16:25:29 -0700
+
 cl-lml (2.2.0-1) unstable; urgency=low
 
   * downloads.lisp: Change from FTP to more general Download term to better 
index a1830451579f3ab3fc01f6cbc29922fb25968395..e00abb77676f031083c013f9bd2b617215dc0be1 100644 (file)
@@ -1,4 +1,4 @@
-;;; $Id: utils.lisp,v 1.4 2002/12/08 22:38:06 kevin Exp $
+;;; $Id: utils.lisp,v 1.5 2003/02/06 23:25:52 kevin Exp $
 ;;;;
 ;;;; General purpose utilities
 
@@ -19,7 +19,8 @@
        (string-equal "keyword" (package-name (symbol-package x)))))
 
 (defun list-to-spaced-string (list)
-  (format nil "~{ ~A~}" list))
+  (when (consp list) 
+    (format nil "~A~{ ~A~}" (first list) (rest list))))
 
 (defun indent-spaces (n &optional (stream *standard-output*))
   "Indent n*2 spaces to output stream"