[gnus git] branch master updated: n0-17-396-g0d6645e =1= gnus-art.el (gnus-article-setup-buffer): Decode group name used for article buffers' name.
Katsumi Yamaoka <[email protected]>
| Newsgroups | gmane.emacs.gnus.cvs |
|---|---|
| Message-ID | <[email protected]> |
via 0d6645e3f9fbf6c51b42fcf1bcde60057b9d1a85 (commit)
from 3be4a5e842f8874c724fe93bcc06c71cc74671ac (commit)
- Log -----------------------------------------------------------------
commit 0d6645e3f9fbf6c51b42fcf1bcde60057b9d1a85
Author: Katsumi Yamaoka <[email protected]>
Date: Tue Nov 22 02:16:46 2011 +0000
gnus-art.el (gnus-article-setup-buffer): Decode group name used for article buffers' name.
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 50e5728..556b3ff 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-22 Katsumi Yamaoka <[email protected]>
+
+ * gnus-art.el (gnus-article-setup-buffer): Decode group name used for
+ article buffers' name.
+
2011-11-22 Lars Magne Ingebrigtsen <[email protected]>
* shr.el (shr-table-horizontal-line): Revert infinite loops introduced
diff --git a/lisp/gnus-art.el b/lisp/gnus-art.el
index dd41947..0abc802 100644
--- a/lisp/gnus-art.el
+++ b/lisp/gnus-art.el
@@ -4497,7 +4497,9 @@ commands:
(defun gnus-article-setup-buffer ()
"Initialize the article buffer."
(let* ((name (if gnus-single-article-buffer "*Article*"
- (concat "*Article " gnus-newsgroup-name "*")))
+ (concat "*Article "
+ (gnus-group-decoded-name gnus-newsgroup-name)
+ "*")))
(original
(progn (string-match "\\*Article" name)
(concat " *Original Article"
-----------------------------------------------------------------------
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 | 5 +++++
lisp/gnus-art.el | 4 +++-
2 files changed, 8 insertions(+), 1 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