Hi, I am not sure whether this is a Scheme feature, but it seems
inconvenient that

((lambda (a . b) b) 1 . 2)

bombs out.  The same with

(apply (lambda (a . b) b) 1 2)

I guess my "real" problem is that I'd like to do call wrapping by writing

(lambda ( . x) (fun . x))

instead of having to write

(lambda ( . x) (apply fun x))

I assume eval is not supposed to try dealing with dotted lists?

-- 
David Kastrup


Reply via email to