Function: mm-detect-coding-region
mm-detect-coding-region is a byte-compiled function defined in
mm-util.el.gz.
Signature
(mm-detect-coding-region START END)
Documentation
Like detect-coding-region except returning the best one.
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mm-util.el.gz
;; Fixme: This doesn't look useful where it's used.
(defun mm-detect-coding-region (start end)
"Like `detect-coding-region' except returning the best one."
(let ((coding-systems (detect-coding-region start end)))
(or (car-safe coding-systems)
coding-systems)))