aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/category.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/category.c b/src/category.c
index cc9be2a0c86..e6c180f29c1 100644
--- a/src/category.c
+++ b/src/category.c
@@ -326,15 +326,16 @@ DEFUN ("modify-category-entry", Fmodify_category_entry,
326 Smodify_category_entry, 2, 4, 0, 326 Smodify_category_entry, 2, 4, 0,
327 doc: /* Modify the category set of CHARACTER by adding CATEGORY to it. 327 doc: /* Modify the category set of CHARACTER by adding CATEGORY to it.
328The category is changed only for table TABLE, which defaults to 328The category is changed only for table TABLE, which defaults to
329 the current buffer's category table. 329the current buffer's category table.
330CHARACTER can be either a single character or a cons representing the
331lower and upper ends of an inclusive character range to modify.
330If optional fourth argument RESET is non-nil, 332If optional fourth argument RESET is non-nil,
331then delete CATEGORY from the category set instead of adding it. */) 333then delete CATEGORY from the category set instead of adding it. */)
332 (character, category, table, reset) 334 (character, category, table, reset)
333 Lisp_Object character, category, table, reset; 335 Lisp_Object character, category, table, reset;
334{ 336{
335 int c, charset, c1, c2;
336 Lisp_Object set_value; /* Actual value to be set in category sets. */ 337 Lisp_Object set_value; /* Actual value to be set in category sets. */
337 Lisp_Object val, category_set; 338 Lisp_Object category_set;
338 int start, end; 339 int start, end;
339 int from, to; 340 int from, to;
340 341