[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

What does this bit of code do?



Suppose I define function "foo" like so:

(defun foo
    (unwind-protect
        (throw 'silly t)
        (return-from foo nil)))

What does (catch 'silly (foo)) return?

-Sandra
-------