diff options
author | Glenn Morris <rgm@gnu.org> | 2011-05-17 20:39:45 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2011-05-17 20:39:45 -0700 |
commit | c136e5cdf2e7ea9745727c07146713c582f93cde (patch) | |
tree | ae0d7bb83755d036f5856199f481c74a49583bc9 /lisp/mail/sendmail.el | |
parent | e565dd3789e0ef5589035034893d99de239c87a2 (diff) | |
download | emacs-c136e5cdf2e7ea9745727c07146713c582f93cde.tar.gz emacs-c136e5cdf2e7ea9745727c07146713c582f93cde.tar.bz2 emacs-c136e5cdf2e7ea9745727c07146713c582f93cde.zip |
Remove lib-src/fakemail.c.
* lib-src/fakemail.c: Remove file.
* lib-src/Makefile.in (UTILITIES): Remove fakemail${EXEEXT}.
(fakemail${EXEEXT}): Remove rule.
* lib-src/makefile.w32-in ($(BLD)/fakemail.exe, fakemail)
($(BLD)/fakemail.$(O)): Remove.
* lisp/mail/sendmail.el (sendmail-program): Fall back to just "sendmail".
* lisp/mail/feedmail.el: Update commentary.
* doc/emacs/ack.texi (Acknowledgments): Remove fakemail.c.
* etc/NEWS: Mention this.
* INSTALL: Remove fakemail.
Diffstat (limited to 'lisp/mail/sendmail.el')
-rw-r--r-- | lisp/mail/sendmail.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index ed4270d484c..bbb02d7b978 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -48,9 +48,9 @@ ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") - (t "fakemail"))) ; in lib-src, to interface to /bin/mail + (t "sendmail"))) "Program used to send messages." - :version "24.1" ; added executable-find + :version "24.1" ; add executable-find, remove fakemail :group 'mail :type 'file) |