aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDave Love2002-05-23 18:44:45 +0000
committerDave Love2002-05-23 18:44:45 +0000
commit8f7e5042a45fa4be84318871feba4ea9c5bfff50 (patch)
tree0af11ab8c724bb64b59c2e7ac709be9d9fa8a370 /src
parent10c7550e11719977adf8cb98bf0ea9c693d2e345 (diff)
downloademacs-8f7e5042a45fa4be84318871feba4ea9c5bfff50.tar.gz
emacs-8f7e5042a45fa4be84318871feba4ea9c5bfff50.zip
(Fmodify_category_entry): Doc fix. Remove unused
vars.
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