Function: describe-text-category
describe-text-category is an interactive and byte-compiled function
defined in descr-text.el.gz.
Signature
(describe-text-category CATEGORY)
Documentation
Describe a text property CATEGORY.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/descr-text.el.gz
;;; Describe-Text Commands.
(defun describe-text-category (category)
"Describe a text property CATEGORY."
(interactive "SCategory: ")
(help-setup-xref (list #'describe-text-category category)
(called-interactively-p 'interactive))
(with-help-window (help-buffer)
(with-current-buffer standard-output
(insert "Category " (format "%S" category) ":\n\n")
(describe-property-list (symbol-plist category))
(goto-char (point-min)))))