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:
parent
f18d273831
commit
00a2cef7d1
1 changed files with 2 additions and 2 deletions
|
|
@ -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))) \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue