# HG changeset patch # User Eli Zaretskii # Date 978445293 0 # Node ID 725ad15f859dcb97c6b45dd1d5848299dabfacb4 # Parent 80882632a23ded7205386252cca5eb96f0151f16 (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 -r 80882632a23d -r 725ad15f859d src/category.c --- a/src/category.c Tue Jan 02 14:20:32 2001 +0000 +++ b/src/category.c Tue Jan 02 14:21:33 2001 +0000 @@ -110,8 +110,6 @@ (category, table) Lisp_Object category, table; { - Lisp_Object doc; - CHECK_CATEGORY (category, 0); table = check_category_table (table); @@ -128,7 +126,6 @@ Lisp_Object table; { int i; - Lisp_Object docstring_vector; table = check_category_table (table); @@ -287,10 +284,6 @@ (ch) Lisp_Object ch; { - Lisp_Object val; - int charset; - unsigned char c1, c2; - CHECK_NUMBER (ch, 0); return CATEGORY_SET (XFASTINT (ch)); }