diff options
| author | Richard M. Stallman <rms@gnu.org> | 1994-07-15 04:31:14 +0000 |
|---|---|---|
| committer | Richard M. Stallman <rms@gnu.org> | 1994-07-15 04:31:14 +0000 |
| commit | 47c5e807f2ce02d0c29a56a3c28e8605d64b6eec (patch) | |
| tree | 20e02900f9cfc6b899d8f142a8d8a1db7a7c30ed | |
| parent | cd754bf5472509f190f2ab8f311f2110444443d8 (diff) | |
| download | emacs-47c5e807f2ce02d0c29a56a3c28e8605d64b6eec.tar.gz | |
(mail-mailer-swallows-blank-line): Verify sendmail.cf
exists before reading it.
| -rw-r--r-- | lisp/mail/sendmail.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index 58c5f298fa9..3244d1cd103 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el @@ -130,7 +130,7 @@ so you can edit or delete these lines.") ;; options -t, and -v if not interactive. (defvar mail-mailer-swallows-blank-line (if (and (string-match "sparc-sun-sunos\\(\\'\\|[^5]\\)" system-configuration) - (file-exists-p "/etc/sendmail.cf") + (file-readable-p "/etc/sendmail.cf") (let ((buffer (get-buffer-create " *temp*"))) (unwind-protect (save-excursion |
