aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-12-18 13:57:32 +0000
committerDave Love2000-12-18 13:57:32 +0000
commitc5dfddb64fce3a83de49e8d96cfbca54a58da413 (patch)
tree3bdcb1fd3aa164549f5ac23fa03d6d448fa29c9c
parentcfec635c0ceb8f44de766ace0eff560e2cfe1253 (diff)
downloademacs-c5dfddb64fce3a83de49e8d96cfbca54a58da413.tar.gz
emacs-c5dfddb64fce3a83de49e8d96cfbca54a58da413.zip
Fix last check-in.
-rw-r--r--lisp/mail/sendmail.el6
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."
100Function to call to send the current buffer as mail. 100Function to call to send the current buffer as mail.
101The headers should be delimited by a line which is 101The headers should be delimited by a line which is
102not a valid RFC822 header or continuation line." 102not 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