Hello,
I don't understand what the manual says about when there are more then two arguments to map or for-each.
With two arguments, the last one must be a list, so OK is
(for-each display '(1 3))
But the following are ERR,
(for-each display 1 3)
(for-each display '(1 3) '(1 3))
Thanks,
Eric J.