On 20 Apr 2005 19:30:25 +0200, Luke Gorrie luke@synap.se said:
Luke> I just commited a change to bind *PRINT-ESCAPE* to NIL in arglist Luke> display. This is the difference between
Luke> (with-open-file (var &rest lisp::open-args) &parse-body (forms lisp::decls)) Luke> and the nicer Luke> (with-open-file (var &rest open-args) &parse-body (forms decls))
Luke> Did I miss something, or is this something that should go in the release?
Keywords maybe? E.g.
(defmacro confusion (&key ((:the-keyword the-variable))) `(list ,the-variable))
__Martin