diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/frame.h | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index a32558a2ac7..c962fe04af6 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-04-15 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * frame.h (FRAME_SAMPLE_VISIBILITY): Remove unused 0 in comma expression. | ||
| 4 | |||
| 1 | 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu> | 5 | 2010-04-14 Dan Nicolaescu <dann@ics.uci.edu> |
| 2 | 6 | ||
| 3 | Reduce cpp use in Makefile.in. | 7 | Reduce cpp use in Makefile.in. |
diff --git a/src/frame.h b/src/frame.h index 36b0b6b069c..8f563ca9d77 100644 --- a/src/frame.h +++ b/src/frame.h | |||
| @@ -793,7 +793,7 @@ typedef struct frame *FRAME_PTR; | |||
| 793 | 793 | ||
| 794 | #define FRAME_SAMPLE_VISIBILITY(f) \ | 794 | #define FRAME_SAMPLE_VISIBILITY(f) \ |
| 795 | (((f)->async_visible && (f)->visible != (f)->async_visible) ? \ | 795 | (((f)->async_visible && (f)->visible != (f)->async_visible) ? \ |
| 796 | SET_FRAME_GARBAGED (f) : 0, \ | 796 | SET_FRAME_GARBAGED (f) : \ |
| 797 | (f)->visible = (f)->async_visible, \ | 797 | (f)->visible = (f)->async_visible, \ |
| 798 | (f)->iconified = (f)->async_iconified) | 798 | (f)->iconified = (f)->async_iconified) |
| 799 | 799 | ||