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

global function namespace given too much weight perhaps?



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?