emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 6dcaa56: Fix Bug#10873 in `report-emacs-bug'


From: Martin Rudalics
Subject: [Emacs-diffs] emacs-25 6dcaa56: Fix Bug#10873 in `report-emacs-bug'
Date: Mon, 28 Dec 2015 18:12:01 +0000

branch: emacs-25
commit 6dcaa56a13271eabc79d475059d29ebb886ea3e7
Author: Martin Rudalics <address@hidden>
Commit: Martin Rudalics <address@hidden>

    Fix Bug#10873 in `report-emacs-bug'
    
    * lisp/mail/emacsbug.el (report-emacs-bug): If
    `report-emacs-bug-no-explanations' is nil, make sure we can show
    mail and warnings buffer on this frame (Bug#10873).
---
 lisp/mail/emacsbug.el |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index bc2dafa..ae0e711 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -162,6 +162,14 @@ Prompts for bug subject.  Leaves you in a mail buffer."
     (setq message-end-point
          (with-current-buffer (messages-buffer)
            (point-max-marker)))
+    (condition-case nil
+        ;; For the novice user make sure there's always enough space for
+        ;; the mail and the warnings buffer on this frame (Bug#10873).
+        (unless report-emacs-bug-no-explanations
+          (delete-other-windows)
+          (set-window-dedicated-p nil nil)
+          (set-frame-parameter nil 'unsplittable nil))
+      (error nil))
     (compose-mail report-emacs-bug-address topic)
     ;; The rest of this does not execute if the user was asked to
     ;; confirm and said no.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]