From: Dan Nicolaescu Date: Thu, 15 Apr 2010 21:52:27 +0000 (-0700) Subject: * frame.h (FRAME_SAMPLE_VISIBILITY): Undo previous change. X-Git-Tag: emacs-pretest-24.0.90~104^2~275^2~438^2~503 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=00030710427af3bb3a1798690985d83e1bcba67c;p=emacs.git * frame.h (FRAME_SAMPLE_VISIBILITY): Undo previous change. --- diff --git a/src/ChangeLog b/src/ChangeLog index 668dc24e229..0ab926b8bb3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -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 Reduce cpp use in Makefile.in. diff --git a/src/frame.h b/src/frame.h index 8f563ca9d77..36b0b6b069c 100644 --- a/src/frame.h +++ b/src/frame.h @@ -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)