unofficial mirror of bug-gnu-emacs@gnu.org 
 help / color / mirror / code / Atom feed
* bug#55571: [PATCH] Fix submit-emacs-patch
@ 2022-05-22  6:40 Damien Cassou
  2022-05-22 11:24 ` Lars Ingebrigtsen
  0 siblings, 1 reply; 2+ messages in thread
From: Damien Cassou @ 2022-05-22  6:40 UTC (permalink / raw)
  To: 55571

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

Tags: patch

Hi,

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.

Best

-- 
Damien Cassou

"Success is the ability to go from one failure to another without
losing enthusiasm." --Winston Churchill

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Fix-submit-emacs-patch.patch --]
[-- Type: text/patch, Size: 1127 bytes --]

From ad98101fce092b8f0f02c2a3eabdea41d833441d Mon Sep 17 00:00:00 2001
From: Damien Cassou <damien@cassou.me>
Date: Sun, 22 May 2022 08:32:38 +0200
Subject: [PATCH] Fix submit-emacs-patch

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.
---
 lisp/mail/emacsbug.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/mail/emacsbug.el b/lisp/mail/emacsbug.el
index 8cb4a00009..df2b7a7453 100644
--- a/lisp/mail/emacsbug.el
+++ b/lisp/mail/emacsbug.el
@@ -516,6 +516,7 @@ submit-emacs-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")
-- 
2.36.0


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

* bug#55571: [PATCH] Fix submit-emacs-patch
  2022-05-22  6:40 bug#55571: [PATCH] Fix submit-emacs-patch Damien Cassou
@ 2022-05-22 11:24 ` Lars Ingebrigtsen
  0 siblings, 0 replies; 2+ messages in thread
From: Lars Ingebrigtsen @ 2022-05-22 11:24 UTC (permalink / raw)
  To: Damien Cassou; +Cc: 55571

Damien Cassou <damien@cassou.me> writes:

> 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.

Thanks; pushed to Emacs 29.

-- 
(domestic pets only, the antidote for overdose, milk.)
   bloggy blog: http://lars.ingebrigtsen.no





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

end of thread, other threads:[~2022-05-22 11:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-22  6:40 bug#55571: [PATCH] Fix submit-emacs-patch Damien Cassou
2022-05-22 11:24 ` Lars Ingebrigtsen

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).