(setcdr CELL NEWCDR)
(setq cell '(a b)) #=> (a b) cell #=> (a b) (setcdr cell 'z) #=> z cell #=> (a . z)