[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: EAK's fuction ballot
- To: KMP at MIT-MC, EAK at MIT-MC
- Subject: Re: EAK's fuction ballot
- From: Eric Benson <BENSON at UTAH-20>
- Date: Fri, 03 Dec 1982 20:59:00 -0000
- Cc: common-Lisp at SU-AI
- In-reply-to: Your message of 3-Dec-82 1602-MST
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.
-------