[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Improper lists in macros [WAS: none] -- correction

This page is part of the web mail archives of SRFI 26 from before July 7th, 2015. The new archives for SRFI 26 contain all messages, not just those from before July 7th, 2015.




...the example I sent was wrong: (curry list 1 2) does not result
in (lambda () (apply list 1 2)) but rather in (lambda () (apply list 1 2 '())).
(The macro implementation of the SRFI does not even use apply for
this case and simply produces (lambda () (list 1 2)), but that is not the
point here.)

Sebastian.