From: Eli Zaretskii Date: Tue, 2 Jan 2001 14:21:33 +0000 (+0000) Subject: (Fcategory_docstring): Remove unused variable `doc'. X-Git-Tag: emacs-pretest-21.0.95~177 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a303d6bee9e1c8fcce76cc1cc5ea1f2e8cadb948;p=emacs.git (Fcategory_docstring): Remove unused variable `doc'. (Fget_unused_category): Remove unused variable `docstring_vector'. (Fchar_category_set): Remove unused variables `val', `charset', `c1' and `c2'. --- 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, (category, table) Lisp_Object category, table; { - Lisp_Object doc; - CHECK_CATEGORY (category, 0); table = check_category_table (table); @@ -128,7 +126,6 @@ to modify; it defaults to the current buffer's category table.") Lisp_Object table; { int i; - Lisp_Object docstring_vector; table = check_category_table (table); @@ -287,10 +284,6 @@ DEFUN ("char-category-set", Fchar_category_set, Schar_category_set, 1, 1, 0, (ch) Lisp_Object ch; { - Lisp_Object val; - int charset; - unsigned char c1, c2; - CHECK_NUMBER (ch, 0); return CATEGORY_SET (XFASTINT (ch)); }