Function: get-charset-property
get-charset-property is a byte-compiled function defined in
mule.el.gz.
Signature
(get-charset-property CHARSET PROPNAME)
Documentation
Return the value of CHARSET's PROPNAME property.
This is the last value stored with
(put-charset-property CHARSET PROPNAME VALUE).
Source Code
;; Defined in /usr/src/emacs/lisp/international/mule.el.gz
;; It is better not to use backquote in this file,
;; because that makes a bootstrapping problem
;; if you need to recompile all the Lisp files using interpreted code.
(defun get-charset-property (charset propname)
"Return the value of CHARSET's PROPNAME property.
This is the last value stored with
(put-charset-property CHARSET PROPNAME VALUE)."
(plist-get (charset-plist charset) propname))