aboutsummaryrefslogtreecommitdiffstats
path: root/src/category.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/category.c')
-rw-r--r--src/category.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/category.c b/src/category.c
index a822bb654b0..0ab2a70f8a4 100644
--- a/src/category.c
+++ b/src/category.c
@@ -304,7 +304,7 @@ DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0,
304usage: (char-category-set CHAR) */) 304usage: (char-category-set CHAR) */)
305 (Lisp_Object ch) 305 (Lisp_Object ch)
306{ 306{
307 CHECK_NUMBER (ch); 307 CHECK_CHARACTER (ch);
308 return CATEGORY_SET (XFASTINT (ch)); 308 return CATEGORY_SET (XFASTINT (ch));
309} 309}
310 310