[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
SETF
- To: BMT at MIT-MC
- Subject: SETF
- From: JONL at MIT-MC (Jon L White)
- Date: Thu, 14 Aug 80 03:41:00 GMT
- Cc: MACSYMA-I at MIT-MC, RZ at MIT-MC, WGD at MIT-MC
- Cc: (BUG LISP) at MIT-MC
- Original-date: 13 AUG 1980 2341-EDT
Unfortunately, the currentf SETF expander turns (SETF (CAR L) X)
into (PROGN (RPLACA L X) X), which isn't what the built in version does
-- it acts as if the expansion should be (RPLACA L X). This difference
in return value makes it impossible to use the value of SETF. Any
preferences for what the "return value" of SETF should be?