X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lists.lisp;h=ecdd003f993ec85dd20ee160f23017cb0c2eefb3;hb=d98ff150815e427ae475303fbd09e734cb345cb7;hp=eaa3f9d372aa601d079d6f24ead4798bc17ea467;hpb=94c161e4a288d874d8d763b768312e1004a888ec;p=kmrcl.git diff --git a/lists.lisp b/lists.lisp index eaa3f9d..ecdd003 100644 --- a/lists.lisp +++ b/lists.lisp @@ -7,8 +7,6 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Apr 2000 ;;;; -;;;; $Id$ -;;;; ;;;; This file, part of KMRCL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; ;;;; KMRCL users are granted the rights to distribute and use this software @@ -76,9 +74,9 @@ (defun flatten (tree) (let ((result '())) (labels ((scan (item) - (if (listp item) - (map nil #'scan item) - (push item result)))) + (if (consp item) + (map nil #'scan item) + (push item result)))) (scan tree)) (nreverse result)))