[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: question regarding multiple-value-bind
- To: clisp-list@ma2s2.mathematik.uni-karlsruhe.de
- Subject: Re: question regarding multiple-value-bind
- From: haible (Bruno Haible)
- Date: Thu, 9 Mar 95 17:37:07 +0100
[Forwarded from Bill Barry <barryb@dots.physics.orst.edu>.]
Return only returns from inside an implicit or explicit block.
Unlike some macros such as do, it seems that multiple-value-bind
is not enclosed in an implicit block.
You could use
(multiple-value-bind (x y) (values 1 2) nil)
Bill Barry