Name: Anonymous 2011-01-29 8:57
In following code, does "return-from all" frees mapcar's stack frame or would lead to stack overflow?
(defun all (fun xs)
(mapcar (lambda (x) (unless (funcall fun x)
(return-from all nil)))
xs)
t)