]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix submit-emacs-patch
authorDamien Cassou <damien@cassou.me>
Sun, 22 May 2022 06:32:38 +0000 (08:32 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sun, 22 May 2022 11:24:21 +0000 (13:24 +0200)
submit-emacs-patch creates a new message and immediately inserts new
lines without first moving the point to the message body.  This
doesn't work with notmuch (and its notmuch-user-agent symbol) because
the point starts in the headers and nothing in Emacs specifies that
the mua should move point to the body automatically.

* lisp/mail/emacsbug.el (submit-emacs-patch): Make sure point is in
the body before inserting new lines (bug#55571).

lisp/mail/emacsbug.el

index 8cb4a00009f9cfb67bb65776714e1c9981316908..df2b7a7453be7832439f74f1619bbd289370535d 100644 (file)
@@ -516,6 +516,7 @@ Message buffer where you can explain more about the patch."
     (view-mode 1)
     (button-mode 1))
   (message-mail-other-window report-emacs-bug-address subject)
+  (message-goto-body)
   (insert "\n\n\n")
   (emacs-bug--system-description)
   (mml-attach-file file "text/patch" nil "attachment")