Hallo!

On Fri, Aug 09, 2002 at 01:35:03PM -0400, Sam Steingold wrote:

>(proclaim '(special x))
>(defun f1 () x)
>(defun f2 () (f1))
>(defun f3 () (f2))

>(f3)

>Error in KERNEL::UNBOUND-SYMBOL-ERROR-HANDLER:  the variable X is unbound

That just means that the variable has no value at all (not even NIL).

Try (setf x 42) (f3).

Kind regards,

Hannah.

Reply via email to