0.9.13.50: Windows baby-steps
[sbcl.git] / src / code / list.lisp
index 225f1bb..f15ad9f 100644 (file)
 (defun last1 (list)
   #!+sb-doc
   "Return the last cons (not the last element) of a list"
-  (let ((rest list))
+  (let ((rest list)
+        (list list))
     (loop (unless (consp rest) (return list))
           (shiftf list rest (cdr rest)))))