From: Kevin M. Rosenberg Date: Thu, 6 Feb 2003 23:25:52 +0000 (+0000) Subject: r3972: Auto commit for Debian build X-Git-Tag: v2.5.5~113 X-Git-Url: http://git.kpe.io/?p=lml.git;a=commitdiff_plain;h=4cf004c41a51e8ecad9974fa567b9abd503ac82b r3972: Auto commit for Debian build --- diff --git a/debian/changelog b/debian/changelog index a0ee5be..d92c054 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +cl-lml (2.2.1-1) unstable; urgency=low + + * Upstream change + + -- Kevin M. Rosenberg 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 diff --git a/utils.lisp b/utils.lisp index a183045..e00abb7 100644 --- a/utils.lisp +++ b/utils.lisp @@ -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"