Mercurial > emacs
changeset 107867:34e533ec15e0
* frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Thu, 15 Apr 2010 11:19:00 -0700 |
parents | afb992a317bd |
children | 93782019c88c |
files | src/ChangeLog src/frame.h |
diffstat | 2 files changed, 5 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <dann@ics.uci.edu> + + * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression. + 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu> Reduce cpp use in Makefile.in.
--- 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)