Gerardo Sarria <[EMAIL PROTECTED]> writes: > * (loop for item in '(1 2 3) > with list-result
You don't want the WITH. The INTO variable is automatically bound as if with WITH, so that you end up with two conflicting WITH variables, so to speak.
Gerardo Sarria <[EMAIL PROTECTED]> writes: > * (loop for item in '(1 2 3) > with list-result
You don't want the WITH. The INTO variable is automatically bound as if with WITH, so that you end up with two conflicting WITH variables, so to speak.