mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-08 12:40:49 -08:00
(check_category_table): Use CHECK_TYPE.
This commit is contained in:
parent
a5f07f6d92
commit
886742699b
1 changed files with 1 additions and 3 deletions
|
|
@ -164,11 +164,9 @@ Lisp_Object
|
|||
check_category_table (table)
|
||||
Lisp_Object table;
|
||||
{
|
||||
register Lisp_Object tem;
|
||||
if (NILP (table))
|
||||
return current_buffer->category_table;
|
||||
while (tem = Fcategory_table_p (table), NILP (tem))
|
||||
table = wrong_type_argument (Qcategory_table_p, table);
|
||||
CHECK_TYPE (!NILP (Fcategory_table_p (table)), Qcategory_table_p, table);
|
||||
return table;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue