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

Re: question regarding multiple-value-bind



[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