[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r111141: Fix :type in previous (un)rm
From: |
Glenn Morris |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r111141: Fix :type in previous (un)rmail change, use a better :group |
Date: |
Thu, 06 Dec 2012 20:57:43 -0800 |
User-agent: |
Bazaar (2.5.0) |
------------------------------------------------------------
revno: 111141
committer: Glenn Morris <address@hidden>
branch nick: trunk
timestamp: Thu 2012-12-06 20:57:43 -0800
message:
Fix :type in previous (un)rmail change, use a better :group
modified:
lisp/mail/rmail.el
lisp/mail/unrmail.el
=== modified file 'lisp/mail/rmail.el'
--- a/lisp/mail/rmail.el 2012-12-07 04:37:14 +0000
+++ b/lisp/mail/rmail.el 2012-12-07 04:57:43 +0000
@@ -2715,10 +2715,10 @@
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'.
=== modified file 'lisp/mail/unrmail.el'
--- a/lisp/mail/unrmail.el 2012-12-07 04:37:14 +0000
+++ b/lisp/mail/unrmail.el 2012-12-07 04:57:43 +0000
@@ -56,10 +56,10 @@
\">>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)
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r111141: Fix :type in previous (un)rmail change, use a better :group,
Glenn Morris <=