chiark / gitweb /
src/utilities.lisp: Use `do' in place of unnecessary `do*'.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 22 Sep 2015 10:27:11 +0000 (11:27 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 8 Oct 2015 20:39:20 +0000 (21:39 +0100)
The other loop variables seem to have gotten lost somewhere along the
way.

src/utilities.lisp

index cd10aa131dc7f170262d00290aae365ae9ef366f..1767b9ef8f86744e8e2724d1ad2dd9c2a5620ac2 100644 (file)
@@ -456,8 +456,8 @@ (defun merge-lists (lists &key pick (test #'eql))
    By building the input lists and selecting the PICK function appropriately,
    a variety of different CPL algorithms can be implemented."
 
-  (do* ((lb (make-list-builder)))
-       ((null lists) (lbuild-list lb))
+  (do ((lb (make-list-builder)))
+      ((null lists) (lbuild-list lb))
 
     ;; The candidate items are the ones at the front of the input lists.
     ;; Gather them up, removing duplicates.  If a candidate is somewhere in