aboutsummaryrefslogtreecommitdiffstats
path: root/src/category.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/category.h')
-rw-r--r--src/category.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/category.h b/src/category.h
index 737198cc964..423270100b3 100644
--- a/src/category.h
+++ b/src/category.h
@@ -53,8 +53,7 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
53 The second extra slot is a version number of the category table. 53 The second extra slot is a version number of the category table.
54 But, for the moment, we are not using this slot. */ 54 But, for the moment, we are not using this slot. */
55 55
56#define CATEGORYP(x) \ 56#define CATEGORYP(x) RANGED_INTEGERP (0x20, x, 0x7E)
57 (INTEGERP ((x)) && XFASTINT ((x)) >= 0x20 && XFASTINT ((x)) <= 0x7E)
58 57
59#define CHECK_CATEGORY(x) \ 58#define CHECK_CATEGORY(x) \
60 CHECK_TYPE (CATEGORYP (x), Qcategoryp, x) 59 CHECK_TYPE (CATEGORYP (x), Qcategoryp, x)