diff options
author | Lars Magne Ingebrigtsen <larsi@gnus.org> | 2011-07-03 00:24:28 +0000 |
---|---|---|
committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2011-07-03 00:24:28 +0000 |
commit | ecd283b970934a3b13c0c16086ca29ef609118a3 (patch) | |
tree | f07544114ee27880a255bf3631caaeb2f3d0d800 /lisp/gnus/gnus.el | |
parent | 7f6d634ac2f8117b4635fad890e7bc19087ee806 (diff) | |
download | emacs-ecd283b970934a3b13c0c16086ca29ef609118a3.tar.gz |
Merge changes made in Gnus trunk.
gnus.el (gnus-list-debbugs): New command.
gnus-group.el (gnus-bug-group-download-format-alist): Get the mboxstat instead of the maintbox, since the stat seems to be fuller.
gnus-msg.el (gnus-configure-posting-styles): Don't try to select dead summary buffers.
message.el (message-get-reply-headers): Delete all duplicates, instead of the first.
(message-get-reply-headers): Ensure that we have progress while deleting duplicates.
gnus-msg.el (gnus-configure-posting-styles): Get the local gnus-posting-style value from the summary buffer to make it easier to make that a per-buffer conf.
Diffstat (limited to 'lisp/gnus/gnus.el')
-rw-r--r-- | lisp/gnus/gnus.el | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lisp/gnus/gnus.el b/lisp/gnus/gnus.el index 9204fcf66b7..e8e3a8955ba 100644 --- a/lisp/gnus/gnus.el +++ b/lisp/gnus/gnus.el @@ -4385,6 +4385,13 @@ prompt the user for the name of an NNTP server to use." (gnus-1 arg dont-connect slave) (gnus-final-warning))) +(autoload 'debbugs-emacs "debbugs-gnu") +(defun gnus-list-debbugs () + "List all open Gnus bug reports." + (interactive) + (debbugs-emacs '("important" "normal" "minor" "wishlist") + "gnus")) + ;; Allow redefinition of Gnus functions. (gnus-ems-redefine) |