diff options
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/feedmail.el | 4 | ||||
-rw-r--r-- | lisp/mail/rmail.el | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index 3180b05c818..b8d42debe6f 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el @@ -629,7 +629,7 @@ configurations of sendmail). Even if the latter case is true, it probably won't hurt you to generate your own, and it will then show up in the saved message if you use Fcc:." :group 'feedmail-headers - :type '(choice (const nil) function) + :type '(choice (const t) (const nil) function) ) @@ -678,7 +678,7 @@ configurations of sendmail). Even if the latter case is true, it probably won't hurt you to generate your own, and it will then show up in the saved message if you use Fcc:." :group 'feedmail-headers - :type '(choice (const nil) function) + :type '(choice (const t) (const nil) function) ) diff --git a/lisp/mail/rmail.el b/lisp/mail/rmail.el index 5c0412fa2be..5e534b2d47d 100644 --- a/lisp/mail/rmail.el +++ b/lisp/mail/rmail.el @@ -422,7 +422,7 @@ still the current message in the Rmail buffer.") Called with region narrowed to the message, including headers, before obeying `rmail-ignored-headers'." :group 'rmail-headers - :type 'function) + :type '(choice (const nil) function)) (defcustom rmail-automatic-folder-directives nil "List of directives specifying where to put a message. |