typo in last commit

svn: r8991
This commit is contained in:
Eli Barzilay 2008-03-16 15:31:16 +00:00
parent 5649006dac
commit ca7586e09f

View File

@ -34,8 +34,7 @@
#lang mzscheme
(require srfi/optional
"predicate.ss"
(require "predicate.ss"
"selector.ss")
(provide %cdrs
@ -82,7 +81,7 @@
;; However, if any of the lists is empty, just abort and return [() ()].
(define (%cars+cdrs lists)
(let/ec
(let/ec abort
(let recur ((lists lists))
(if (pair? lists)
(let-values ([(list other-lists) (car+cdr lists)])