Variable: mm-text-coding-system
mm-text-coding-system is a variable defined in mm-util.el.gz.
Value
raw-text
Documentation
Text-safe coding system (For removing ^M).
Source Code
;; Defined in /usr/src/emacs/lisp/gnus/mm-util.el.gz
(defvar mm-text-coding-system
(or (if (memq system-type '(windows-nt ms-dos))
(and (mm-coding-system-p 'raw-text-dos) 'raw-text-dos)
(and (mm-coding-system-p 'raw-text) 'raw-text))
mm-binary-coding-system)
"Text-safe coding system (For removing ^M).")