diff options
| author | John Paul Wallington | 2007-02-24 17:24:29 +0000 |
|---|---|---|
| committer | John Paul Wallington | 2007-02-24 17:24:29 +0000 |
| commit | 7c2288eaa217c795bca208a809a44de166221ee8 (patch) | |
| tree | 04ebaa07103b48d48eed3051008db8b691856c06 | |
| parent | 8ae63446efeaa27dac16238ae3e2b8ffdd391fe8 (diff) | |
| download | emacs-7c2288eaa217c795bca208a809a44de166221ee8.tar.gz emacs-7c2288eaa217c795bca208a809a44de166221ee8.zip | |
(feedmail-message-id-generator, feedmail-date-generator): Fix custom types.
| -rw-r--r-- | lisp/ChangeLog | 3 | ||||
| -rw-r--r-- | lisp/mail/feedmail.el | 4 |
2 files changed, 5 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index e1ee3820644..eb1641a7742 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,8 @@ | |||
| 1 | 2007-02-24 John Paul Wallington <jpw@pobox.com> | 1 | 2007-02-24 John Paul Wallington <jpw@pobox.com> |
| 2 | 2 | ||
| 3 | * mail/feedmail.el (feedmail-message-id-generator) | ||
| 4 | (feedmail-date-generator): Fix custom types. | ||
| 5 | |||
| 3 | * mail/rmail.el (rmail-message-filter): Fix custom type. | 6 | * mail/rmail.el (rmail-message-filter): Fix custom type. |
| 4 | 7 | ||
| 5 | 2007-02-24 Eli Zaretskii <eliz@gnu.org> | 8 | 2007-02-24 Eli Zaretskii <eliz@gnu.org> |
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 | |||
| 629 | probably won't hurt you to generate your own, and it will then show up | 629 | probably won't hurt you to generate your own, and it will then show up |
| 630 | in the saved message if you use Fcc:." | 630 | in the saved message if you use Fcc:." |
| 631 | :group 'feedmail-headers | 631 | :group 'feedmail-headers |
| 632 | :type '(choice (const nil) function) | 632 | :type '(choice (const t) (const nil) function) |
| 633 | ) | 633 | ) |
| 634 | 634 | ||
| 635 | 635 | ||
| @@ -678,7 +678,7 @@ configurations of sendmail). Even if the latter case is true, it | |||
| 678 | probably won't hurt you to generate your own, and it will then show up | 678 | probably won't hurt you to generate your own, and it will then show up |
| 679 | in the saved message if you use Fcc:." | 679 | in the saved message if you use Fcc:." |
| 680 | :group 'feedmail-headers | 680 | :group 'feedmail-headers |
| 681 | :type '(choice (const nil) function) | 681 | :type '(choice (const t) (const nil) function) |
| 682 | ) | 682 | ) |
| 683 | 683 | ||
| 684 | 684 | ||