(append! x y) results in concatenation of the values of x and y. But, is it guaranteed that result is stored in x? I've read something like that in Help Desk, but I'm still not completely without doubt. Do I need to write (set! x (append! x y)) or (append! x y) is always enough? Thank you, Kazimir Majorinc