]> git.eshelyaron.com Git - emacs.git/commitdiff
* lisp/mail/emacsbug.el (report-emacs-bug): Insert empty X-Debbugs-Cc
authorStefan Monnier <monnier@iro.umontreal.ca>
Thu, 7 Dec 2023 16:30:22 +0000 (11:30 -0500)
committerStefan Monnier <monnier@iro.umontreal.ca>
Thu, 7 Dec 2023 16:30:22 +0000 (11:30 -0500)
lisp/mail/emacsbug.el

index 409ef7165fe2aa87a5250c952bf6840cc5a079e4..b927fcaed00a169d7ad5a5625fa7872c6c3f868a 100644 (file)
@@ -233,9 +233,11 @@ Already submitted bugs can be found in the Emacs bug tracker:
           (set-frame-parameter nil 'unsplittable nil))
       (error nil))
     (compose-mail report-emacs-bug-address topic)
+    (rfc822-goto-eoh)
+    (insert "X-Debbugs-Cc: \n")
     ;; The rest of this does not execute if the user was asked to
     ;; confirm and said no.
-    (when (eq major-mode 'message-mode)
+    (when (derived-mode-p 'message-mode)
       ;; Message-mode sorts the headers before sending.  We sort now so
       ;; that report-emacs-bug-orig-text remains valid.  (Bug#5178)
       (message-sort-headers)