This is a feature request accompanied by a possible implementation. When reading (with Gnus) Emacs mailing lists or news groups that have bug references in the subject line, typing `M-x gnus-read-ephemeral-emacs-bug-group' is a nice way to browse the whole bug thread by opening it as an temporary group. However, this command offers the bug number in the subject as default in the minibuffer prompt only if point is on the number, which usually means having to navigate to it. It would be more convenient if the bug number in the current line in the Group buffer were offered as default regardless of where point is in the line. The first patch (against bzr trunk revision 109955) below does this. It makes a number in the subject line the default if it is preceded by "bug" or "Bug", possibly with a space, `#' or `=' in between (the latter to grab the bug number in a URL to the Emacs bugtracker, which is clickable but calls a web browser via browse-url). In addition, since the subject line sometimes contains more than one bug number, this patch allows selecting which one (counting from the left) to offer as default, by typing a numerical prefix argument; with no prefix argument the default is the leftmost bug number. Furthermore, it would be convenient to use gnus-read-ephemeral-emacs-bug-group if you don't already having Gnus loaded, e.g. when visiting an Emacs ChangeLog, so the patch adds an autoload cookie to this command to enable doing this. For ChangeLogs there is already bug-reference.el, which uses browse-url; it would be nice to have the option of using gnus-read-ephemeral-emacs-bug-group to follow bug references by clicking the bug reference links in the ChangeLog file (as an alternative to calling it with `M-x'). So the second patch below does this by adding a suitable user option which is used in bug-reference-push-button. This approach could be generalized by replacing gnus-get-emacs-bug-number by a function that also recognizes other bug or issue numbers, maybe along the lines of bug-reference-bug-regexp, and making bug-reference-push-button act appropriately; but since I've only used gnus-read-ephemeral-emacs-bug-group and could test it, I leave this as a todo. (However, I don't think browse-url itself should be extended to allow calling g-r-e-e-b-g by clicking a URL like the one mentioned in the first paragraph above, since browse-url is intended to call a web browser, and that's what I think users expect when they click relevant links, and the presence of a bug number in a URL is a special case. But with bug-reference-push-button, the point is to follow a bug reference, and since g-r-e-e-b-g also exists for this purpose, it seems reasonable to allow calling it by clicking these links.)