(CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros.
authorPavel Janík <Pavel@Janik.cz>
Fri, 2 Nov 2001 20:14:02 +0000 (20:14 +0000)
committerPavel Janík <Pavel@Janik.cz>
Fri, 2 Nov 2001 20:14:02 +0000 (20:14 +0000)
src/frame.h

index 6331998..f58529d 100644 (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)))              \