Function: put-charset-property

put-charset-property is a byte-compiled function defined in mule.el.gz.

Signature

(put-charset-property CHARSET PROPNAME VALUE)

Documentation

Set CHARSETS's PROPNAME property to value VALUE.

It can be retrieved with (get-charset-property CHARSET PROPNAME).

View in manual

Source Code

;; Defined in /usr/src/emacs/lisp/international/mule.el.gz
(defun put-charset-property (charset propname value)
  "Set CHARSETS's PROPNAME property to value VALUE.
It can be retrieved with `(get-charset-property CHARSET PROPNAME)'."
  (set-charset-plist charset
		     (plist-put (charset-plist charset) propname
				(if (stringp value)
				    (purecopy value)
				  value))))