aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.h
diff options
context:
space:
mode:
authorPavel Janík <[email protected]>2001-11-02 20:14:02 +0000
committerPavel Janík <[email protected]>2001-11-02 20:14:02 +0000
commit00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4 (patch)
treed7ebea78ac405a031abdd92531bfb00407146d06 /src/frame.h
parentf18d2738318dfa6d999cd4d5d6fb0b471efa3d45 (diff)
(CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros.
Diffstat (limited to 'src/frame.h')
-rw-r--r--src/frame.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.h b/src/frame.h
index 633199809e..f58529d1ee 100644
--- a/src/frame.h
+++ b/src/frame.h
@@ -614,13 +614,13 @@ typedef struct frame *FRAME_PTR;
(f)->visible = (f)->async_visible, \
(f)->iconified = (f)->async_iconified)
-#define CHECK_FRAME(x, i) \
+#define CHECK_FRAME(x) \
do { \
if (! FRAMEP (x)) \
x = wrong_type_argument (Qframep, (x)); \
} while (0)
-#define CHECK_LIVE_FRAME(x, i) \
+#define CHECK_LIVE_FRAME(x) \
do { \
if (! FRAMEP (x) \
|| ! FRAME_LIVE_P (XFRAME (x))) \