[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SETF of PROGN
- To: bug-lisp at MIT-MC
- Subject: SETF of PROGN
- From: Guy.Steele at CMU-10A
- Date: Thu, 18 Sep 80 16:32:00 GMT
- Original-date: 18 September 1980 1232-EDT (Thursday)
While we are fixing bugs in SETF why not add the setf-x properties for
fixnum and flonum-identity?
And while you are at it you might also want to do PROGN:
(setf (progn x) 12) = (setf x 12)
[More generally,
(setf (progn x1 x2 ... xn) 12) = (progn x1 x2 ... (setf xn 12))
-- Guy]