Function: char-code-property-description
char-code-property-description is a byte-compiled function defined in
mule-cmds.el.gz.
Signature
(char-code-property-description PROP VALUE)
Documentation
Return a description string of character property PROP's value VALUE.
If there's no description string for VALUE, return nil.
Probably introduced at or before Emacs version 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/international/mule-cmds.el.gz
(defun char-code-property-description (prop value)
"Return a description string of character property PROP's value VALUE.
If there's no description string for VALUE, return nil."
(let ((table (unicode-property-table-internal prop)))
(if table
(let ((func (char-table-extra-slot table 3)))
(if (functionp func)
(funcall func value))))))