1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-02-13 03:06:23 -08:00

(CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros.

This commit is contained in:
Pavel Janík 2001-11-02 20:14:02 +00:00
parent f18d273831
commit 00a2cef7d1

View file

@ -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))) \