]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix :type in previous (un)rmail change, use a better :group
authorGlenn Morris <rgm@gnu.org>
Fri, 7 Dec 2012 04:57:43 +0000 (20:57 -0800)
committerGlenn Morris <rgm@gnu.org>
Fri, 7 Dec 2012 04:57:43 +0000 (20:57 -0800)
lisp/mail/rmail.el
lisp/mail/unrmail.el

index b16f501a99944419a0394eb04c112b72f239a167..446ea4de0f356fca8835b4adebe1734a3f15ef7d 100644 (file)
@@ -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'.
index 23675d90713f753bff5c9f8f56319f4088eb55ec..fd7e49a65d5bb32ff2286230076c4ebe816008f2 100644 (file)
@@ -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)