aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPavel Janík2001-11-02 20:12:54 +0000
committerPavel Janík2001-11-02 20:12:54 +0000
commitf18d2738318dfa6d999cd4d5d6fb0b471efa3d45 (patch)
treebb9a0be212fa467d6651e0eca96622e63ded4fef /src
parent874cc80e49b1a7d0cef98a30002541ae1bef66ad (diff)
downloademacs-f18d2738318dfa6d999cd4d5d6fb0b471efa3d45.tar.gz
emacs-f18d2738318dfa6d999cd4d5d6fb0b471efa3d45.zip
(CHECK_CATEGORY, CHECK_CATEGORY_SET): Remove unused argument `i' in macros.
Diffstat (limited to 'src')
-rw-r--r--src/category.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/category.h b/src/category.h
index 827c6310704..3b2e609bdd3 100644
--- a/src/category.h
+++ b/src/category.h
@@ -53,7 +53,7 @@ Boston, MA 02111-1307, USA. */
53#define CATEGORYP(x) \ 53#define CATEGORYP(x) \
54 (INTEGERP ((x)) && XFASTINT ((x)) >= 0x20 && XFASTINT ((x)) <= 0x7E) 54 (INTEGERP ((x)) && XFASTINT ((x)) >= 0x20 && XFASTINT ((x)) <= 0x7E)
55 55
56#define CHECK_CATEGORY(x, i) \ 56#define CHECK_CATEGORY(x) \
57 do { \ 57 do { \
58 if (!CATEGORYP ((x))) x = wrong_type_argument (Qcategoryp, (x)); \ 58 if (!CATEGORYP ((x))) x = wrong_type_argument (Qcategoryp, (x)); \
59 } while (0) 59 } while (0)
@@ -71,7 +71,7 @@ Boston, MA 02111-1307, USA. */
71#define SET_CATEGORY_SET(category_set, category, val) \ 71#define SET_CATEGORY_SET(category_set, category, val) \
72 (Faset (category_set, category, val)) 72 (Faset (category_set, category, val))
73 73
74#define CHECK_CATEGORY_SET(x, i) \ 74#define CHECK_CATEGORY_SET(x) \
75 do { \ 75 do { \
76 if (!CATEGORY_SET_P ((x))) x = wrong_type_argument (Qcategorysetp, (x)); \ 76 if (!CATEGORY_SET_P ((x))) x = wrong_type_argument (Qcategorysetp, (x)); \
77 } while (0) 77 } while (0)