diff options
| author | Karl Heuer | 1998-09-10 15:38:21 +0000 |
|---|---|---|
| committer | Karl Heuer | 1998-09-10 15:38:21 +0000 |
| commit | 19a2870f7f94f241b5af35ccf7ea9c97f05b5de2 (patch) | |
| tree | 0bfe8e1e695d3a18658c262294775e890f8c5634 | |
| parent | 05422245ca50e8ccc05e2fe2b332570e0ede1dc7 (diff) | |
| download | emacs-19a2870f7f94f241b5af35ccf7ea9c97f05b5de2.tar.gz emacs-19a2870f7f94f241b5af35ccf7ea9c97f05b5de2.zip | |
(feedmail-from-line): Allow t.
(feedmail-message-id-suffix): Allow nil.
| -rw-r--r-- | lisp/mail/feedmail.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/feedmail.el b/lisp/mail/feedmail.el index 6caf63db494..6f878c29b6b 100644 --- a/lisp/mail/feedmail.el +++ b/lisp/mail/feedmail.el | |||
| @@ -527,7 +527,7 @@ chance of being wrong. It also honors `mail-from-style'. Better to set | |||
| 527 | this variable explicitly to the string you want or find some other way | 527 | this variable explicitly to the string you want or find some other way |
| 528 | to arrange for the message to get a From: line." | 528 | to arrange for the message to get a From: line." |
| 529 | :group 'feedmail-headers | 529 | :group 'feedmail-headers |
| 530 | :type '(choice (const nil) string) | 530 | :type '(choice (const t) (const nil) string) |
| 531 | ) | 531 | ) |
| 532 | 532 | ||
| 533 | 533 | ||
| @@ -637,7 +637,7 @@ used. If the value of `feedmail-message-id-suffix' contains an \"@\" character, | |||
| 637 | the string will be used verbatim, else an \"@\" character will be prepended | 637 | the string will be used verbatim, else an \"@\" character will be prepended |
| 638 | automatically." | 638 | automatically." |
| 639 | :group 'feedmail-headers | 639 | :group 'feedmail-headers |
| 640 | :type 'string | 640 | :type '(choice (const nil) string) |
| 641 | ) | 641 | ) |
| 642 | 642 | ||
| 643 | ;; this was suggested in various forms by several people; first was | 643 | ;; this was suggested in various forms by several people; first was |