aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/category.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/category.c b/src/category.c
index c74b483e7d9..e77d6f3b753 100644
--- a/src/category.c
+++ b/src/category.c
@@ -110,8 +110,6 @@ DEFUN ("category-docstring", Fcategory_docstring, Scategory_docstring, 1, 2, 0,
110 (category, table) 110 (category, table)
111 Lisp_Object category, table; 111 Lisp_Object category, table;
112{ 112{
113 Lisp_Object doc;
114
115 CHECK_CATEGORY (category, 0); 113 CHECK_CATEGORY (category, 0);
116 table = check_category_table (table); 114 table = check_category_table (table);
117 115
@@ -128,7 +126,6 @@ to modify; it defaults to the current buffer's category table.")
128 Lisp_Object table; 126 Lisp_Object table;
129{ 127{
130 int i; 128 int i;
131 Lisp_Object docstring_vector;
132 129
133 table = check_category_table (table); 130 table = check_category_table (table);
134 131
@@ -287,10 +284,6 @@ DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0,
287 (ch) 284 (ch)
288 Lisp_Object ch; 285 Lisp_Object ch;
289{ 286{
290 Lisp_Object val;
291 int charset;
292 unsigned char c1, c2;
293
294 CHECK_NUMBER (ch, 0); 287 CHECK_NUMBER (ch, 0);
295 return CATEGORY_SET (XFASTINT (ch)); 288 return CATEGORY_SET (XFASTINT (ch));
296} 289}