]> git.eshelyaron.com Git - emacs.git/commitdiff
(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 633199809e99a0a1d066d9997da82f9b6d2c6f73..f58529d1ee035d7e6c1b0f2f21c48a1299001b93 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)))              \