From: Glenn Morris Date: Fri, 7 Dec 2012 04:57:43 +0000 (-0800) Subject: Fix :type in previous (un)rmail change, use a better :group X-Git-Tag: emacs-24.3.90~173^2~9^2~20 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=8e0762cade0431a3586c9f60234a63df4117a16a;p=emacs.git Fix :type in previous (un)rmail change, use a better :group --- diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index b16f501a999..446ea4de0f3 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -2715,10 +2715,10 @@ It is not critical to set this to the correct value; it only affects how Rmail displays lines starting with \">*From \" in non-MIME messages. See also `unrmail-mbox-format'." - :type '(choice (const 'mboxrd) - (const 'mboxro)) + :type '(choice (const mboxrd) + (const mboxro)) :version "24.4" - :group 'rmail) + :group 'rmail-files) (defun rmail-show-message-1 (&optional msg) "Show message MSG (default: current message) using `rmail-view-buffer'. diff --git a/lisp/mail/unrmail.el b/lisp/mail/unrmail.el index 23675d90713..fd7e49a65d5 100644 --- a/lisp/mail/unrmail.el +++ b/lisp/mail/unrmail.el @@ -56,10 +56,10 @@ or not. The `mxbord' format avoids this by also quoting \">From \" as \">>From \", and so on. For this reason, mboxrd is recommended. See also `rmail-mbox-format'." - :type '(choice (const 'mboxrd) - (const 'mboxro)) + :type '(choice (const mboxrd) + (const mboxro)) :version "24.4" - :group 'rmail) + :group 'rmail-files) ;;;###autoload (defun unrmail (file to-file)