]> git.eshelyaron.com Git - emacs.git/commitdiff
* frame.h (FRAME_SAMPLE_VISIBILITY): Undo previous change.
authorDan Nicolaescu <dann@ics.uci.edu>
Thu, 15 Apr 2010 21:52:27 +0000 (14:52 -0700)
committerDan Nicolaescu <dann@ics.uci.edu>
Thu, 15 Apr 2010 21:52:27 +0000 (14:52 -0700)
src/ChangeLog
src/frame.h

index 668dc24e2292c870f14191e01fd46e4472ba00b1..0ab926b8bb3fd8ef8b1eb898a48a372ed0a88f8e 100644 (file)
@@ -2,8 +2,6 @@
 
        * xdisp.c (message): Do not use NO_ARG_ARRAY.
 
-       * 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 8f563ca9d77e033f8ff8da8a7862cdacceba0a67..36b0b6b069cabdb0debc17ce58c8fe48675d33b6 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) : \
+   SET_FRAME_GARBAGED (f) : 0, \
    (f)->visible = (f)->async_visible, \
    (f)->iconified = (f)->async_iconified)