[parenscript-devel] Bug in setf
31 Dec
2007
31 Dec
'07
10:57 p.m.
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
1 Feb
1 Feb
7:30 a.m.
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
6214
Age (days ago)
6246
Last active (days ago)
1 comments
2 participants
participants (2)
-
Daniel Gackle
-
Vladimir Sedach