all messages for Emacs-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* bug#16011: [patch] 24.3.50; message-send-mail-with-sendmail kills useful error message buffer
@ 2013-11-30  8:38 Vitalie Spinu
  2013-12-03  1:06 ` Katsumi Yamaoka
  0 siblings, 1 reply; 2+ messages in thread
From: Vitalie Spinu @ 2013-11-30  8:38 UTC (permalink / raw)
  To: 16011

[-- Attachment #1: Type: text/plain, Size: 309 bytes --]


Hi, 

On error, message-send-mail-with-sendmail pops to the error message
buffer with an obvious intention for the user to see it. But then kills
the buffer.

Consequently the user sees only a completely useless, emacs generated
message like:

   error: "Sending...failed with exit value 78" 


   Vitalie



[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-message-send-mail-with-sendmail-don-t-kill-error-buf.patch --]
[-- Type: text/x-diff, Size: 904 bytes --]

From 757150148ebd6ac841133010b31c807191bf448b Mon Sep 17 00:00:00 2001
From: Vitalie Spinu <spinuvit@gmail.com>
Date: Sat, 30 Nov 2013 00:26:42 -0800
Subject: [PATCH] message-send-mail-with-sendmail: don't kill error buffer on
 error

---
 lisp/gnus/message.el | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lisp/gnus/message.el b/lisp/gnus/message.el
index b7d0ada..f96cd7a 100644
--- a/lisp/gnus/message.el
+++ b/lisp/gnus/message.el
@@ -4739,7 +4739,9 @@ that instead."
 			    (list resend-to-addresses)
 			  '("-t"))))))
 	    (unless (or (null cpr) (and (numberp cpr) (zerop cpr)))
-              (if errbuf (pop-to-buffer errbuf))
+              (when errbuf
+                (pop-to-buffer errbuf)
+                (setq errbuf nil))
 	      (error "Sending...failed with exit value %d" cpr)))
 	  (when message-interactive
 	    (with-current-buffer errbuf
-- 
1.8.1.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#16011: [patch] 24.3.50; message-send-mail-with-sendmail kills useful error message buffer
  2013-11-30  8:38 bug#16011: [patch] 24.3.50; message-send-mail-with-sendmail kills useful error message buffer Vitalie Spinu
@ 2013-12-03  1:06 ` Katsumi Yamaoka
  0 siblings, 0 replies; 2+ messages in thread
From: Katsumi Yamaoka @ 2013-12-03  1:06 UTC (permalink / raw)
  To: Vitalie Spinu; +Cc: 16011-done

Vitalie Spinu wrote:
> On error, message-send-mail-with-sendmail pops to the error message
> buffer with an obvious intention for the user to see it. But then kills
> the buffer.

Applied the patch to Emacs trunk and Gnus master.  Thanks.





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-12-03  1:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-11-30  8:38 bug#16011: [patch] 24.3.50; message-send-mail-with-sendmail kills useful error message buffer Vitalie Spinu
2013-12-03  1:06 ` Katsumi Yamaoka

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/emacs.git
	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.