



I want to do something like this.
(defun func ()
(multiple-value-bind (arg ...an unknown amount of returns) (func2)
(if (...a test using arg value...) (progn ;;do something) (values arg ..somehow return all values returns by func2))))
In other words i want to 'propogate the multiple return value returned by func2. Is there any way to do this?
Thx
