Function: mm-detect-mime-charset-region
mm-detect-mime-charset-region is a byte-compiled function defined in
mm-util.el.gz.
Signature
(mm-detect-mime-charset-region START END)
Documentation
Detect MIME charset of the text in the region between START and END.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mm-util.el.gz
(defun mm-detect-mime-charset-region (start end)
"Detect MIME charset of the text in the region between START and END."
(let ((cs (mm-detect-coding-region start end)))
(coding-system-get cs 'mime-charset)))