svn: r6052

original commit: 853579755dcf7cbe32b33d6be3d862cf48ff371d
This commit is contained in:
Eli Barzilay 2007-04-26 21:39:36 +00:00
parent b9da8168b0
commit 76aa4bffb6

View File

@ -244,7 +244,7 @@
[else (let ([a (car l)])
#,(case (syntax-e #'mode)
[(member) #'(if (f a) l (loop (cdr l)))]
[(find) #'(if (f a) (car l) (loop (cdr l)))]
[(find) #'(if (f a) a (loop (cdr l)))]
[(assoc) #'(if (pair? a)
(if (f (car a)) a (loop (cdr l)))
(raise-mismatch-error