diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-01-02 14:21:33 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-01-02 14:21:33 +0000 |
commit | a303d6bee9e1c8fcce76cc1cc5ea1f2e8cadb948 (patch) | |
tree | dae7cc2f89479ce09096be439306fd24747de6d9 /src/category.c | |
parent | 6dde6abc96a12dd0fda63d4857b984c1f570a37f (diff) | |
download | emacs-a303d6bee9e1c8fcce76cc1cc5ea1f2e8cadb948.tar.gz |
(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'.
Diffstat (limited to 'src/category.c')
-rw-r--r-- | src/category.c | 7 |
1 files changed, 0 insertions, 7 deletions
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)); } |