Function: enriched-handle-charset-prop

enriched-handle-charset-prop is a byte-compiled function defined in enriched.el.gz.

Signature

(enriched-handle-charset-prop OLD NEW)

Documentation

Return a list of annotations for a change in the charset property.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/enriched.el.gz
(defun enriched-handle-charset-prop (old new)
  "Return a list of annotations for a change in the `charset' property."
  (cons (and old (list (list "x-charset" (symbol-name old))))
        (and new (list (list "x-charset" (symbol-name new))))))