diff options
author | Visuwesh <visuweshm@gmail.com> | 2022-07-14 19:31:35 +0200 |
---|---|---|
committer | Lars Ingebrigtsen <larsi@gnus.org> | 2022-07-14 19:34:43 +0200 |
commit | da3338404bbf0fd1a64b5cc73028f09c499a2de1 (patch) | |
tree | a294343bc2935643755239874c5e54c339ca5732 /lisp/mail | |
parent | a3cebcf3f16e36b621a2328b75f3b59ea68ca1e9 (diff) | |
download | emacs-da3338404bbf0fd1a64b5cc73028f09c499a2de1.tar.gz emacs-da3338404bbf0fd1a64b5cc73028f09c499a2de1.tar.bz2 emacs-da3338404bbf0fd1a64b5cc73028f09c499a2de1.zip |
Use compose-mail in submit-emacs-patch
* lisp/mail/emacsbug.el (submit-emacs-patch): Prefer
compose-mail-other-window over message-mail-other-window (bug#56555).
Diffstat (limited to 'lisp/mail')
-rw-r--r-- | lisp/mail/emacsbug.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el index d743802eade..6cc99c21348 100644 --- a/lisp/mail/emacsbug.el +++ b/lisp/mail/emacsbug.el @@ -518,7 +518,7 @@ Message buffer where you can explain more about the patch." (goto-char (point-min)) (view-mode 1) (button-mode 1)) - (message-mail-other-window report-emacs-bug-address subject) + (compose-mail-other-window report-emacs-bug-address subject) (message-goto-body) (insert "\n\n\n") (emacs-bug--system-description) |