diff options
author | John Wiegley <johnw@newartisans.com> | 2016-01-18 22:56:33 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2016-01-18 22:56:33 -0800 |
commit | 6acd2aa02c6f0eb9d3fadce0bb48183837beafd8 (patch) | |
tree | d236a14dc554951c3e7c5a5b38a3bd98edc1315a /lisp/mail/rmail.el | |
parent | 564c84f4b12482aefe86539d2471607565c3ee7c (diff) | |
parent | 549a765efeca2748e68a5c6ce6c9238784e82535 (diff) | |
download | emacs-6acd2aa02c6f0eb9d3fadce0bb48183837beafd8.tar.gz emacs-6acd2aa02c6f0eb9d3fadce0bb48183837beafd8.tar.bz2 emacs-6acd2aa02c6f0eb9d3fadce0bb48183837beafd8.zip |
-
Diffstat (limited to 'lisp/mail/rmail.el')
-rw-r--r-- | lisp/mail/rmail.el | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 05511a84540..5464c38af76 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -694,8 +694,9 @@ Element N specifies the summary line for message N+1.") This is set to nil by default.") (defcustom rmail-get-coding-function nil - "Function of no args to try to determine coding system for a message." - :type 'function + "Function of no args to try to determine coding system for a message. +If nil, just search for `rmail-mime-charset-pattern'." + :type '(choice (const nil) function) :group 'rmail :version "24.4") |