diff options
author | Teodor Zlatanov <tzz@lifelogs.com> | 2011-06-28 22:18:09 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2011-06-28 22:18:09 +0000 |
commit | 8b7fba43dd3fcfb7fb4798794b20f6197dd8f829 (patch) | |
tree | fd221218238ca3d33032b5f89495d115f698a600 /lisp | |
parent | 1176868d0a466ae5374d1c47de70f1fc22ef7cd6 (diff) | |
download | emacs-8b7fba43dd3fcfb7fb4798794b20f6197dd8f829.tar.gz emacs-8b7fba43dd3fcfb7fb4798794b20f6197dd8f829.tar.bz2 emacs-8b7fba43dd3fcfb7fb4798794b20f6197dd8f829.zip |
Merge changes made in Gnus trunk.
gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug reports.
gnus.el (gnus-bug-package): Use "gnus."
(gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/gnus/ChangeLog | 8 | ||||
-rw-r--r-- | lisp/gnus/gnus-msg.el | 2 | ||||
-rw-r--r-- | lisp/gnus/gnus.el | 6 |
3 files changed, 15 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog index 839bd519d49..ec7cca9fdff 100644 --- a/lisp/gnus/ChangeLog +++ b/lisp/gnus/ChangeLog @@ -1,3 +1,11 @@ +2011-06-28 Teodor Zlatanov <tzz@lifelogs.com> + + * gnus-msg.el (gnus-bug): Add Package and Version pseudo-headers to bug + reports. + + * gnus.el (gnus-bug-package): Use "gnus." + (gnus-maintainer): Direct bug reports to submit@debbugs.gnu.org. + 2011-06-26 Lars Magne Ingebrigtsen <larsi@gnus.org> * gnus-art.el (gnus-article-stop-animations): New function to stop any diff --git a/lisp/gnus/gnus-msg.el b/lisp/gnus/gnus-msg.el index e256446c016..8e382e02cc3 100644 --- a/lisp/gnus/gnus-msg.el +++ b/lisp/gnus/gnus-msg.el @@ -1461,6 +1461,8 @@ If YANK is non-nil, include the original article." (goto-char (point-min)) (re-search-forward (concat "^" (regexp-quote mail-header-separator) "$")) (forward-line 1) + (insert (format "Package: %s\n" gnus-bug-package)) + (insert (format "Version: %s\n" (gnus-continuum-version))) (insert (gnus-version) "\n" (emacs-version) "\n") (when (and (boundp 'nntp-server-type) diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 20986d25942..9204fcf66b7 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -2655,9 +2655,13 @@ such as a mark that says whether an article is stored in the cache (defvar gnus-have-read-active-file nil) (defconst gnus-maintainer - "bugs@gnus.org (The Gnus Bugfixing Girls + Boys)" + "submit@debbugs.gnu.org (The Gnus Bugfixing Girls + Boys)" "The mail address of the Gnus maintainers.") +(defconst gnus-bug-package + "gnus" + "The package to use in the bug submission.") + (defvar gnus-info-nodes '((gnus-group-mode "(gnus)Group Buffer") (gnus-summary-mode "(gnus)Summary Buffer") |