]> git.eshelyaron.com Git - emacs.git/commitdiff
(CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused argument `i' in macros.
authorPavel Janík <Pavel@Janik.cz>
Fri, 2 Nov 2001 20:12:54 +0000 (20:12 +0000)
committerPavel Janík <Pavel@Janik.cz>
Fri, 2 Nov 2001 20:12:54 +0000 (20:12 +0000)
src/category.h

index 827c6310704ba0ce3e9d32f33d8d546dd6787a95..3b2e609bdd3235ccd6c6a53862d6d45685511a5a 100644 (file)
@@ -53,7 +53,7 @@ Boston, MA 02111-1307, USA.  */
 #define CATEGORYP(x) \
   (INTEGERP ((x)) && XFASTINT ((x)) >= 0x20 && XFASTINT ((x)) <= 0x7E)
 
-#define CHECK_CATEGORY(x, i)                                           \
+#define CHECK_CATEGORY(x)                                              \
   do {                                                                 \
     if (!CATEGORYP ((x))) x = wrong_type_argument (Qcategoryp, (x));   \
   } while (0)
@@ -71,7 +71,7 @@ Boston, MA 02111-1307, USA.  */
 #define SET_CATEGORY_SET(category_set, category, val) \
   (Faset (category_set, category, val))
 
-#define CHECK_CATEGORY_SET(x, i)                                          \
+#define CHECK_CATEGORY_SET(x)                                     \
   do {                                                                    \
     if (!CATEGORY_SET_P ((x))) x = wrong_type_argument (Qcategorysetp, (x)); \
   } while (0)