Basically, after a (defvar *var*), there
are times when (setq *var* '(0 0)) doesn't work (the previous value of
*var* remains in effect).
I guess you are modifying the value of *var*, which is not allowed if it is a quoted list. That's why you need e.g. (list .. ..) or (copy-tree '(.. ..)) instead of '(.. ..).