]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix the patch tagging in submit-emacs-patch
authorLars Ingebrigtsen <larsi@gnus.org>
Sat, 26 Sep 2020 15:38:38 +0000 (17:38 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Sat, 26 Sep 2020 15:38:38 +0000 (17:38 +0200)
* lisp/mail/emacsbug.el (submit-emacs-patch): Put the tags in the
debbugs pseudo-headers because X-Debbugs-Tags is not a thing that
exists.

lisp/mail/emacsbug.el

index 36d1dc7cac8cb7533260ef93eb44d8b7f8910d78..e48c25436ee44fd370a053e0a535fb0ea3a91a93 100644 (file)
@@ -514,9 +514,13 @@ Message buffer where you can explain more about the patch."
   (insert "\n\n\n")
   (emacs-bug--system-description)
   (mml-attach-file file "text/patch" nil "attachment")
-  (message-add-header "X-Debbugs-Tags: patch")
   (message-goto-body)
   (message "Write a description of the patch and use `C-c C-c' to send it")
+  (add-hook 'message-send-hook
+            (lambda ()
+              (message-goto-body)
+              (insert "Tags: patch\nthanks\n\n"))
+            t)
   (message-add-action
    (lambda ()
      ;; Bury the help buffer (if it's shown).