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: Thu, 06 Sep 2012 12:03:43 +0300
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.2.50 (x86_64-pc-linux-gnu)

>> The following patch eliminates this limitation
>> by creating unique group names:
>
> Thanks; applied to Ma Gnus.

I see that you installed an old version of the patch.  I sent a newer
version at the end of the message 11 in http://debbugs.gnu.org/11961#11
I'm copying it here for your convenience:

=== modified file 'lisp/gnus/gnus-group.el'
--- lisp/gnus/gnus-group.el     2012-07-24 22:17:17 +0000
+++ lisp/gnus/gnus-group.el     2012-07-29 18:15:42 +0000
@@ -2388,7 +2388,7 @@ (defun gnus-read-ephemeral-gmane-group (
               group start (+ start range)))
       (write-region (point-min) (point-max) tmpfile)
       (gnus-group-read-ephemeral-group
-       (format "%s.start-%s.range-%s" group start range)
+       (format "nndoc+ephemeral:%s.start-%s.range-%s" group start range)
        `(nndoc ,tmpfile
               (nndoc-article-type mbox))))
     (delete-file tmpfile)))
@@ -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 "nndoc+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]