]> git.eshelyaron.com Git - emacs.git/commitdiff
* frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 15 Apr 2010 18:19:00 +0000 (11:19 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 15 Apr 2010 18:19:00 +0000 (11:19 -0700)
src/ChangeLog
src/frame.h

index a32558a2ac75775afbbfe7febec6c3c9136a9b7b..c962fe04af67257a0858aca76764edb06c606d50 100644 (file)
@@ -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.
index 36b0b6b069cabdb0debc17ce58c8fe48675d33b6..8f563ca9d77e033f8ff8da8a7862cdacceba0a67 100644 (file)
@@ -793,7 +793,7 @@ typedef struct frame *FRAME_PTR;
 
 #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)