From: Pavel Janík Date: Fri, 2 Nov 2001 20:14:02 +0000 (+0000) Subject: (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros. X-Git-Tag: ttn-vms-21-2-B4~18878 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=00a2cef7d11a1b193891eb3d28274ef7fc7c3fe4;p=emacs.git (CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros. --- 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; (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))) \