| |
comp.lang.lisp |
On 27 Jun 2003, Joe Marshall wrote: > Instead of RPLACA and RPLACD, you should use SETF > and > (setf (cadr args) subst) instead of (rplacd args (list subst)) > You should consider representing the nodes in your tree as defstructs. Thanks anyway. Greg
would not alter the origional structure...
(setf (second args) subst) worked fine...
re-implement the program using structures.