There's a bug when using setf to decrement a variable:<br><br>  (ps (setf x (- x 1 2)))<br>    =>  "x -= 1 - 2;"<br><br>Note that this works correctly:<br><br>  (ps (setf x (- 1 x 2)))<br>    => "x = 1 - x - 2;"
<br><br>Dan<br>