1.0.1.10:
authorJuho Snellman <jsnell@iki.fi>
Wed, 3 Jan 2007 20:49:54 +0000 (20:49 +0000)
committerJuho Snellman <jsnell@iki.fi>
Wed, 3 Jan 2007 20:49:54 +0000 (20:49 +0000)
        Suppress a spurious full warning when compiling (MAKE-LIST 0) with
        a (SPACE 0) policy. (Reported and fix suggested by James Knight).

src/code/list.lisp
version.lisp-expr

index f15ad9f..5f38f71 100644 (file)
   (declare (type index size))
   (do ((count size (1- count))
        (result '() (cons initial-element result)))
-      ((zerop count) result)
+      ((<= count 0) result)
     (declare (type index count))))
 \f
 (defun append (&rest lists)
index 7a2561e..b1b8a0b 100644 (file)
@@ -17,4 +17,4 @@
 ;;; checkins which aren't released. (And occasionally for internal
 ;;; versions, especially for internal versions off the main CVS
 ;;; branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)
-"1.0.1.9"
+"1.0.1.10"