Function: category-table-p

category-table-p is a function defined in category.c.

Signature

(category-table-p ARG)

Documentation

Return t if ARG is a category table.

Source Code

// Defined in /usr/src/emacs/src/category.c
{
  if (CHAR_TABLE_P (arg)
      && EQ (XCHAR_TABLE (arg)->purpose, Qcategory_table))
    return Qt;
  return Qnil;
}