summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVisuwesh <visuweshm@gmail.com>2022-07-14 19:31:35 +0200
committerLars Ingebrigtsen <larsi@gnus.org>2022-07-14 19:34:43 +0200
commitda3338404bbf0fd1a64b5cc73028f09c499a2de1 (patch)
treea294343bc2935643755239874c5e54c339ca5732
parenta3cebcf3f16e36b621a2328b75f3b59ea68ca1e9 (diff)
downloademacs-da3338404bbf0fd1a64b5cc73028f09c499a2de1.tar.gz
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).
-rw-r--r--lisp/mail/emacsbug.el2
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)