[gnus git] branch master updated: n0-17-120-gc5efe19 =2= *** empty log message *** ; (gnus-read-ephemeral-emacs-bug-group): Take an optional quit window configuration.
Lars Magne Ingebrigtsen <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via c5efe19045b8d52bad354cc7ac9963e4397cfca7 (commit)
via fc8fd85597d709cfc4e5d26e8342e7ae6bf15924 (commit)
from 7eba7601cf458aa3e7bb0f49c57464dcee5958e4 (commit)
- Log -----------------------------------------------------------------
commit c5efe19045b8d52bad354cc7ac9963e4397cfca7
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Thu Jun 30 21:11:06 2011 +0200
*** empty log message ***
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index b288c20..2b8d931 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,5 +1,8 @@
2011-06-30 Lars Magne Ingebrigtsen <[email protected]>
+ * gnus-group.el (gnus-read-ephemeral-emacs-bug-group): Take an optional
+ quit window configuration.
+
* auth-source.el (epg-context-set-passphrase-callback): Remove
duplicate autoload.
commit fc8fd85597d709cfc4e5d26e8342e7ae6bf15924
Author: Lars Magne Ingebrigtsen <[email protected]>
Date: Thu Jun 30 21:10:58 2011 +0200
(gnus-read-ephemeral-emacs-bug-group): Take an optional quit window configuration.
diff --git a/lisp/gnus-group.el b/lisp/gnus-group.el
index 518f215..82d3156 100644
--- a/lisp/gnus-group.el
+++ b/lisp/gnus-group.el
@@ -2428,7 +2428,7 @@ the bug number, and browsing the URL must return mbox output."
:version "24.1"
:type '(repeat (cons (symbol) (string :tag "URL format string"))))
-(defun gnus-read-ephemeral-bug-group (number mbox-url)
+(defun gnus-read-ephemeral-bug-group (number mbox-url &optional window-conf)
"Browse bug NUMBER as ephemeral group."
(interactive (list (read-string "Enter bug number: "
(thing-at-point 'word) nil)
@@ -2452,7 +2452,8 @@ the bug number, and browsing the URL must return mbox output."
(gnus-group-read-ephemeral-group
"gnus-read-ephemeral-bug"
`(nndoc ,tmpfile
- (nndoc-article-type mbox))))
+ (nndoc-article-type mbox))
+ nil window-conf))
(delete-file tmpfile)))
(defun gnus-read-ephemeral-debian-bug-group (number)
@@ -2463,13 +2464,14 @@ the bug number, and browsing the URL must return mbox output."
number
(cdr (assoc 'debian gnus-bug-group-download-format-alist))))
-(defun gnus-read-ephemeral-emacs-bug-group (number)
+(defun gnus-read-ephemeral-emacs-bug-group (number &optional window-conf)
"Browse Emacs bug NUMBER as ephemeral group."
(interactive (list (read-string "Enter bug number: "
(thing-at-point 'word) nil)))
(gnus-read-ephemeral-bug-group
number
- (cdr (assoc 'emacs gnus-bug-group-download-format-alist))))
+ (cdr (assoc 'emacs gnus-bug-group-download-format-alist))
+ window-conf))
(defun gnus-group-jump-to-group (group &optional prompt)
"Jump to newsgroup GROUP.
-----------------------------------------------------------------------
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we listed those
revisions in full, above.
Summary of changes:
lisp/ChangeLog | 3 +++
lisp/gnus-group.el | 10 ++++++----
2 files changed, 9 insertions(+), 4 deletions(-)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Gnus Project".
The branch, master has been updated
hooks/post-receive
--
Gnus Project