diff options
| -rw-r--r-- | lisp/mail/sendmail.el | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index e94e48b5c64..11df955c11f 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -100,9 +100,9 @@ nil means let mailer mail back a message to report errors." | |||
| 100 | Function to call to send the current buffer as mail. | 100 | Function to call to send the current buffer as mail. |
| 101 | The headers should be delimited by a line which is | 101 | The headers should be delimited by a line which is |
| 102 | not a valid RFC822 header or continuation line." | 102 | not a valid RFC822 header or continuation line." |
| 103 | :type '(radio (function-item sendmail-send-it) | 103 | :type '(radio (function-item sendmail-send-it :tag "Use Sendmail package") |
| 104 | (function-item feedmail-send-it) | 104 | (function-item smtpmail-send-it :tag "Use SMTPmail package") |
| 105 | (function-item smtpmail-send-it) | 105 | (function-item feedmail-send-it :tag "Use Feedmail package") |
| 106 | function) | 106 | function) |
| 107 | :group 'sendmail) | 107 | :group 'sendmail) |
| 108 | 108 | ||