j
k
j a
j l
(defstruct foo (data nil))
(defun test () (let ((foo (make-foo))) (symbol-macrolet ((x (foo-data foo))) (setf x 99)) (foo-data foo)))
(test) ;=> NIL
Back to the thread
Back to the list