From 4cf004c41a51e8ecad9974fa567b9abd503ac82b Mon Sep 17 00:00:00 2001 From: "Kevin M. Rosenberg" Date: Thu, 6 Feb 2003 23:25:52 +0000 Subject: [PATCH] r3972: Auto commit for Debian build --- debian/changelog | 6 ++++++ utils.lisp | 5 +++-- 2 files changed, 9 insertions(+), 2 deletions(-) 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" -- 2.34.1