aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.h b/src/frame.h
index 633199809e9..f58529d1ee0 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -614,13 +614,13 @@ typedef struct frame *FRAME_PTR;
614 (f)->visible = (f)->async_visible, \ 614 (f)->visible = (f)->async_visible, \
615 (f)->iconified = (f)->async_iconified) 615 (f)->iconified = (f)->async_iconified)
616 616
617#define CHECK_FRAME(x, i) \ 617#define CHECK_FRAME(x) \
618 do { \ 618 do { \
619 if (! FRAMEP (x)) \ 619 if (! FRAMEP (x)) \
620 x = wrong_type_argument (Qframep, (x)); \ 620 x = wrong_type_argument (Qframep, (x)); \
621 } while (0) 621 } while (0)
622 622
623#define CHECK_LIVE_FRAME(x, i) \ 623#define CHECK_LIVE_FRAME(x) \
624 do { \ 624 do { \
625 if (! FRAMEP (x) \ 625 if (! FRAMEP (x) \
626 || ! FRAME_LIVE_P (XFRAME (x))) \ 626 || ! FRAME_LIVE_P (XFRAME (x))) \