diff options
| author | Lars Ingebrigtsen | 2022-08-02 12:44:06 +0200 |
|---|---|---|
| committer | Lars Ingebrigtsen | 2022-08-02 19:14:43 +0200 |
| commit | 8af91dee9a9031ac0d49848b16bd288685f1f370 (patch) | |
| tree | 78c4236e7afa75efafc45b5279c2e7efb039eeed | |
| parent | 8783700b23e70874c4996908bf02c010ae6f3fe1 (diff) | |
| download | emacs-8af91dee9a9031ac0d49848b16bd288685f1f370.tar.gz emacs-8af91dee9a9031ac0d49848b16bd288685f1f370.zip | |
Improve sendmail-program doc string
* lisp/mail/sendmail.el (sendmail-program): Document that the
program shouldn't output text (bug#56855).
| -rw-r--r-- | lisp/mail/sendmail.el | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lisp/mail/sendmail.el b/lisp/mail/sendmail.el index f985b2ceac4..189ad075c47 100644 --- a/lisp/mail/sendmail.el +++ b/lisp/mail/sendmail.el | |||
| @@ -49,7 +49,9 @@ | |||
| 49 | ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") | 49 | ((file-exists-p "/usr/lib/sendmail") "/usr/lib/sendmail") |
| 50 | ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") | 50 | ((file-exists-p "/usr/ucblib/sendmail") "/usr/ucblib/sendmail") |
| 51 | (t "sendmail"))) | 51 | (t "sendmail"))) |
| 52 | "Program used to send messages." | 52 | "Program used to send messages. |
| 53 | If the program returns a non-zero error code, or outputs any | ||
| 54 | text, sending is considered \"failed\" by Emacs." | ||
| 53 | :version "24.1" ; add executable-find, remove fakemail | 55 | :version "24.1" ; add executable-find, remove fakemail |
| 54 | :type 'file) | 56 | :type 'file) |
| 55 | 57 | ||