Re: combinations not working
- From: "John Thingstad" <john.thingstad@xxxxxxxxx>
- Date: Mon, 01 Jan 2007 15:29:40 +0100
On Mon, 01 Jan 2007 12:32:32 +0100, John Thingstad <john.thingstad@xxxxxxxxx> wrote:
(defmacro with-permuting-vector ((var vector &optional return) &body body)
`(let ((,var ,vector))
(forall-combinations ,var (lambda (,var) ,@body ,return))))
Oops! The &optional argument was added as a afterthought without testing.
Looking at it is should be:
(defmacro with-permuting-vector ((var vector &optional return) &body body)
`(let ((,var ,vector))
(forall-combinations ,var (lambda (,var) ,@body))
,return))
--
Using Opera's revolutionary e-mail client: http://www.opera.com/mail/
.
- References:
- combinations not working
- From: John Thingstad
- Re: combinations not working
- From: nallen05
- Re: combinations not working
- From: Rainer Joswig
- Re: combinations not working
- From: John Thingstad
- combinations not working
- Prev by Date: Re: combinations not working
- Next by Date: Re: combinations not working
- Previous by thread: Re: combinations not working
- Next by thread: Re: combinations not working
- Index(es):