Function: get-char-code-property
get-char-code-property is a byte-compiled function defined in
mule-cmds.el.gz.
Signature
(get-char-code-property CHAR PROPNAME)
Documentation
Return the value of CHAR's PROPNAME property.
Probably introduced at or before Emacs version 23.1.
Source Code
;; Defined in /usr/src/emacs/lisp/international/mule-cmds.el.gz
(defun get-char-code-property (char propname)
"Return the value of CHAR's PROPNAME property."
(let ((table (unicode-property-table-internal propname)))
(if table
(let ((func (char-table-extra-slot table 1)))
(if (functionp func)
(funcall func char (aref table char) table)
(get-unicode-property-internal table char)))
(plist-get (aref char-code-property-table char) propname))))