aboutsummaryrefslogtreecommitdiffstats
path: root/src/frame.h
diff options
context:
space:
mode:
authorPavel Janík2001-11-02 20:14:02 +0000
committerPavel Janík2001-11-02 20:14:02 +0000
commit00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4 (patch)
treed7ebea78ac405a031abdd92531bfb00407146d06 /src/frame.h
parentf18d2738318dfa6d999cd4d5d6fb0b471efa3d45 (diff)
downloademacs-00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4.tar.gz
emacs-00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4.zip
(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 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))) \