# HG changeset patch # User Dan Nicolaescu # Date 1271355540 25200 # Node ID 34e533ec15e0e0bdefb7596a0f80dd60e06afafa # Parent afb992a317bd822b49c4c66b6a109d6a263e95b3 * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression. diff -r afb992a317bd -r 34e533ec15e0 src/ChangeLog --- a/src/ChangeLog Thu Apr 15 10:22:07 2010 -0700 +++ b/src/ChangeLog Thu Apr 15 11:19:00 2010 -0700 @@ -1,3 +1,7 @@ +2010-04-15 Dan Nicolaescu + + * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression. + 2010-04-14 Dan Nicolaescu Reduce cpp use in Makefile.in. diff -r afb992a317bd -r 34e533ec15e0 src/frame.h --- a/src/frame.h Thu Apr 15 10:22:07 2010 -0700 +++ b/src/frame.h Thu Apr 15 11:19:00 2010 -0700 @@ -793,7 +793,7 @@ #define FRAME_SAMPLE_VISIBILITY(f) \ (((f)->async_visible && (f)->visible != (f)->async_visible) ? \ - SET_FRAME_GARBAGED (f) : 0, \ + SET_FRAME_GARBAGED (f) : \ (f)->visible = (f)->async_visible, \ (f)->iconified = (f)->async_iconified)