summaryrefslogtreecommitdiffstatsabout
authorJuri Linkov <juri@jurta.org>2012-09-06 16:46:56 (GMT)
committer Lars Ingebrigtsen <larsi@gnus.org>2012-09-06 16:46:56 (GMT)
commite77aeb4c7ed753bd554fd48beac8cb886df18997 (patch) (side-by-side diff)
treef4fcaae1bd4df7e1b030e3097f6c1dd2ce925100
parent5c28209571b30b445cbbbc1bfb92b72d8a5914a3 (diff)
downloadgnus-e77aeb4c7ed753bd554fd48beac8cb886df18997.zip
Change ephemeral Gnus group names to be prettier
* gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming scheme for buffer names to be more consistent with other group and article buffer names in Gnus.
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/gnus-group.el4
2 files changed, 8 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 44a9b46..dd628f6 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
+2012-09-06 Juri Linkov <juri@jurta.org>
+
+ * gnus-group.el (gnus-read-ephemeral-gmane-group): Change the naming
+ scheme for buffer names to be more consistent with other group and
+ article buffer names in Gnus.
+
2012-09-06 Lars Ingebrigtsen <larsi@gnus.org>
* gnus-util.el
diff --git a/lisp/gnus-group.el b/lisp/gnus-group.el
index 11ba1b2..0dc4b81 100644
--- a/lisp/gnus-group.el
+++ b/lisp/gnus-group.el
@@ -2386,7 +2386,7 @@ specified by `gnus-gmane-group-download-format'."
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)))
@@ -2479,7 +2479,7 @@ the bug number, and browsing the URL must return mbox output."
"/.*$" ""))))
(write-region (point-min) (point-max) tmpfile)
(gnus-group-read-ephemeral-group
- (format "gnus-read-ephemeral-bug:%s"
+ (format "nndoc+ephemeral:bug#%s"
(mapconcat 'number-to-string ids ","))
`(nndoc ,tmpfile
(nndoc-article-type mbox))