Function: category-docstring

category-docstring is a function defined in category.c.

Signature

(category-docstring CATEGORY &optional TABLE)

Documentation

Return the documentation string of CATEGORY, as defined in TABLE.

TABLE should be a category table and defaults to the current buffer's category table.

View in manual

Source Code

// Defined in /usr/src/emacs/src/category.c
{
  CHECK_CATEGORY (category);
  table = check_category_table (table);

  return CATEGORY_DOCSTRING (table, XFIXNAT (category));
}