diff options
| author | Vitalie Spinu | 2013-12-03 01:06:12 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka | 2013-12-03 01:06:12 +0000 |
| commit | 0c189568e0edfb967beef4bed58ce3889cbcec74 (patch) | |
| tree | ad41f74b16c8b5d0ca9e9d3a6cdbc5476a020e99 | |
| parent | 0f457a371c67e28f4eb7ddc60750169badc7f8d8 (diff) | |
| download | emacs-0c189568e0edfb967beef4bed58ce3889cbcec74.tar.gz emacs-0c189568e0edfb967beef4bed58ce3889cbcec74.zip | |
lisp/gnus/message.el (message-send-mail-with-sendmail): Don't kill error buffer if sending fails
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/message.el | 4 |
2 files changed, 8 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 668a4eb3af6..9239b1e0e19 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-12-03 Vitalie Spinu <spinuvit@gmail.com> (tiny change) | ||
| 2 | |||
| 3 | * message.el (message-send-mail-with-sendmail): | ||
| 4 | Don't kill error buffer if sending fails. | ||
| 5 | |||
| 1 | 2013-11-28 Jan Tatarik <jan.tatarik@gmail.com> | 6 | 2013-11-28 Jan Tatarik <jan.tatarik@gmail.com> |
| 2 | 7 | ||
| 3 | * gnus-icalendar.el (gnus-icalendar-event-from-ical) | 8 | * gnus-icalendar.el (gnus-icalendar-event-from-ical) |
diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el index b7d0ada35d5..11a51a79fce 100644 --- a/lisp/gnus/message.el +++ b/lisp/gnus/message.el | |||
| @@ -4739,7 +4739,9 @@ that instead." | |||
| 4739 | (list resend-to-addresses) | 4739 | (list resend-to-addresses) |
| 4740 | '("-t")))))) | 4740 | '("-t")))))) |
| 4741 | (unless (or (null cpr) (and (numberp cpr) (zerop cpr))) | 4741 | (unless (or (null cpr) (and (numberp cpr) (zerop cpr))) |
| 4742 | (if errbuf (pop-to-buffer errbuf)) | 4742 | (when errbuf |
| 4743 | (pop-to-buffer errbuf) | ||
| 4744 | (setq errbuf nil)) | ||
| 4743 | (error "Sending...failed with exit value %d" cpr))) | 4745 | (error "Sending...failed with exit value %d" cpr))) |
| 4744 | (when message-interactive | 4746 | (when message-interactive |
| 4745 | (with-current-buffer errbuf | 4747 | (with-current-buffer errbuf |