bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#11961: Why can't one open more than one gnus-read-ephemeral-bug at o


From: Juri Linkov
Subject: bug#11961: Why can't one open more than one gnus-read-ephemeral-bug at once?
Date: Tue, 17 Jul 2012 22:10:20 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.1.50 (x86_64-pc-linux-gnu)

Package: emacs,gnus
Version: 24.1.50

Currently `gnus-read-ephemeral-emacs-bug-group'
can open only one group at a time.

The following patch eliminates this limitation
by creating unique group names:

=== modified file 'lisp/gnus/gnus-group.el'
--- lisp/gnus/gnus-group.el     2012-06-27 22:52:31 +0000
+++ lisp/gnus/gnus-group.el     2012-07-17 19:03:39 +0000
@@ -2481,7 +2481,8 @@ (defun gnus-read-ephemeral-bug-group (id
                         "/.*$" ""))))
       (write-region (point-min) (point-max) tmpfile)
       (gnus-group-read-ephemeral-group
-       "gnus-read-ephemeral-bug"
+       (format "gnus-read-ephemeral-bug:%s"
+              (mapconcat 'number-to-string ids ","))
        `(nndoc ,tmpfile
               (nndoc-article-type mbox))
        nil window-conf))






reply via email to

[Prev in Thread] Current Thread [Next in Thread]