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

Re: EAK's fuction ballot



What about
(APPLY 'FOO ...)
as opposed to
(APPLY #'FOO ...)?
Also, in the following:

(DEFUN FOO ()
  1)

(DEFUN BAR ()
  (FUNCALL #'FOO)

(DEFUN FOO ()
  2)

does (BAR) return 1 or 2?  2 is consistent with the assumption that
#'... is treated the same as the CAR of a form.  ENCLOSE would
presumably have (BAR) returning 1, however.
-------