changeset 40655:45453187feeb

(CHECK_FRAME, CHECK_LIVE_FRAME): Remove unused argument `i' in macros.
author Pavel Janík <Pavel@Janik.cz>
date Fri, 02 Nov 2001 20:14:02 +0000
parents 46a74c23644e
children cdfd4d09b79a
files src/frame.h
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/frame.h	Fri Nov 02 20:12:54 2001 +0000
+++ b/src/frame.h	Fri Nov 02 20:14:02 2001 +0000
@@ -614,13 +614,13 @@
    (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)))		\