Function: copy-category-table

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

Signature

(copy-category-table &optional TABLE)

Documentation

Construct a new category table and return it.

It is a copy of the TABLE, which defaults to the standard category table.

View in manual

Source Code

// Defined in /usr/src/emacs/src/category.c
{
  if (!NILP (table))
    check_category_table (table);
  else
    table = Vstandard_category_table;

  return copy_category_table (table);
}