Mercurial > emacs
changeset 18453:d001394d1a2e
(sendmail-program): Look first in /usr/sbin.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Thu, 26 Jun 1997 07:21:42 +0000 |
parents | 44e598b69b42 |
children | b44129078db3 |
files | lisp/paths.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/paths.el Thu Jun 26 01:00:03 1997 +0000 +++ b/lisp/paths.el Thu Jun 26 07:21:42 1997 +0000 @@ -113,8 +113,8 @@ (defconst sendmail-program (cond + ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") - ((file-exists-p "/usr/sbin/sendmail") "/usr/sbin/sendmail") ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") (t "fakemail")) ;In ../etc, to interface to /bin/mail. "Program used to send messages.")