From: Dave Love Date: Thu, 23 May 2002 18:44:45 +0000 (+0000) Subject: (Fmodify_category_entry): Doc fix. Remove unused X-Git-Tag: emacs-pretest-23.0.90~8295^2~1864^2~774 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8f7e5042a45fa4be84318871feba4ea9c5bfff50;p=emacs.git (Fmodify_category_entry): Doc fix. Remove unused vars. --- 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, Smodify_category_entry, 2, 4, 0, doc: /* Modify the category set of CHARACTER by adding CATEGORY to it. The category is changed only for table TABLE, which defaults to - the current buffer's category table. +the current buffer's category table. +CHARACTER can be either a single character or a cons representing the +lower and upper ends of an inclusive character range to modify. If optional fourth argument RESET is non-nil, then delete CATEGORY from the category set instead of adding it. */) (character, category, table, reset) Lisp_Object character, category, table, reset; { - int c, charset, c1, c2; Lisp_Object set_value; /* Actual value to be set in category sets. */ - Lisp_Object val, category_set; + Lisp_Object category_set; int start, end; int from, to;