original commit: 64c7b69febb083d4413b56ddeca11aa74a1dcbc1
This commit is contained in:
Matthew Flatt 2001-06-18 18:09:43 +00:00
parent d879c502b0
commit 36175660bd

View File

@ -218,7 +218,6 @@
[(not (pair? l))
(raise (make-exn:application:mismatch
(format "~a: second argument must be a (proper) list; given ~e" name list)
name (syntax-source-module (quote-syntax here))
(current-continuation-marks)
list))]
[(f (car l)) (if whole-list? l (car l))]
@ -247,7 +246,6 @@
frest))]
[else (raise (make-exn:application:mismatch
(format "filter: second argument must be a (proper) list; given ~e" list)
'filter (syntax-source-module (quote-syntax here))
(current-continuation-marks)
list))])))))