[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
global function namespace given too much weight perhaps?
- To: Fahlman @ CMU-CS-C
- Subject: global function namespace given too much weight perhaps?
- From: George J. Carrette <GJC @ MIT-MC>
- Date: Thu, 22 Nov 1984 06:06:00 -0000
- Cc: common-lisp @ SU-AI
- In-reply-to: Msg of Wed 21 Nov 1984 15:42 EST from Scott E. Fahlman <Fahlman at CMU-CS-C.ARPA>
Please excuse my use of an old name for the concept,
(defun fset (a b) (setf (symbol-function a) b))
It was a good thing I didn't use FSETQ, i.e.
(defmacro FSETQ (A B) `(SETF #',A ,B))
Which brings up a question, is FSETQ as it is defined here
supposed to work in common-lisp?