aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2011-05-26 20:55:07 -0400
committerGlenn Morris2011-05-26 20:55:07 -0400
commit8c7c1f6d955a74dee347f8c4fa2538b8eeccbcbf (patch)
tree3c61d90868b4feabb83d1e46c6d16199d3f4c1a7
parent757c92750c8a9f1c1b69437f19afe62e5f31d9ce (diff)
downloademacs-8c7c1f6d955a74dee347f8c4fa2538b8eeccbcbf.tar.gz
emacs-8c7c1f6d955a74dee347f8c4fa2538b8eeccbcbf.zip
Repeat previous gnus-group.el change for bugs.debian.org.
* lisp/gnus/gnus-group.el (gnus-bug-group-download-format-alist): Use the "maintainer" version of debian reports as well.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/gnus-group.el6
2 files changed, 8 insertions, 3 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 64ae78d11dd..6ed5a3fdcf4 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12011-05-27 Glenn Morris <rgm@gnu.org>
2
3 * gnus-group.el (gnus-bug-group-download-format-alist):
4 Use the "maintainer" version of debian reports as well.
5
12011-05-26 Glenn Morris <rgm@gnu.org> 62011-05-26 Glenn Morris <rgm@gnu.org>
2 7
3 * gnus-group.el (gnus-bug-group-download-format-alist): 8 * gnus-group.el (gnus-bug-group-download-format-alist):
diff --git a/lisp/gnus/gnus-group.el b/lisp/gnus/gnus-group.el
index 2c611b3048e..65192bf173e 100644
--- a/lisp/gnus/gnus-group.el
+++ b/lisp/gnus/gnus-group.el
@@ -2412,13 +2412,13 @@ Valid input formats include:
2412(defcustom gnus-bug-group-download-format-alist 2412(defcustom gnus-bug-group-download-format-alist
2413 '((emacs . "http://debbugs.gnu.org/%s;mbox=yes;mboxmaint=yes") 2413 '((emacs . "http://debbugs.gnu.org/%s;mbox=yes;mboxmaint=yes")
2414 (debian 2414 (debian
2415 . "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s&mbox=yes")) 2415 . "http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=%s&mbox=yes;mboxmaint=yes"))
2416 "Alist of symbols for bug trackers and the corresponding URL format string. 2416 "Alist of symbols for bug trackers and the corresponding URL format string.
2417The URL format string must contain a single \"%s\", specifying 2417The URL format string must contain a single \"%s\", specifying
2418the bug number, and browsing the URL must return mbox output." 2418the bug number, and browsing the URL must return mbox output."
2419 :group 'gnus-group-foreign 2419 :group 'gnus-group-foreign
2420 ;; Added mboxmaint=yes for Emacs. This gets the version with the 2420 ;; Added mboxmaint=yes. This gets the version with the messages as
2421 ;; messages as they went out, not as they came in. 2421 ;; they went out, not as they came in.
2422 ;; Eg bug-gnu-emacs is replaced by ###@debbugs. 2422 ;; Eg bug-gnu-emacs is replaced by ###@debbugs.
2423 :version "24.1" 2423 :version "24.1"
2424 :type '(repeat (cons (symbol) (string :tag "URL format string")))) 2424 :type '(repeat (cons (symbol) (string :tag "URL format string"))))