(setcar CELL NEWCAR)
(setq cell '(a b)) #=> (a b) cell #=> (a b) (setcar cell 'z) #=> z cell #=> (z b)