There's a bug when using setf to decrement a variable:
(ps (setf x (- x 1 2))) => "x -= 1 - 2;"
Note that this works correctly:
(ps (setf x (- 1 x 2))) => "x = 1 - x - 2;"
Dan
Well, I finally got around to fixing this bug.
Vladimir
On 12/31/07, Daniel Gackle danielgackle@gmail.com wrote:
There's a bug when using setf to decrement a variable:
(ps (setf x (- x 1 2))) => "x -= 1 - 2;"
Note that this works correctly:
(ps (setf x (- 1 x 2))) => "x = 1 - x - 2;"
Dan
parenscript-devel mailing list parenscript-devel@common-lisp.net http://common-lisp.net/cgi-bin/mailman/listinfo/parenscript-devel
parenscript-devel@common-lisp.net