gnus-art.el (gnus-article-setup-buffer): Decode group name used for article buffers' name.
This commit is contained in:
parent
60bf278fd3
commit
a3e0ee5a69
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-11-22 Katsumi Yamaoka <yamaoka@jpl.org>
|
||||
|
||||
* gnus-art.el (gnus-article-setup-buffer): Decode group name used for
|
||||
article buffers' name.
|
||||
|
||||
2011-11-22 Lars Magne Ingebrigtsen <larsi@gnus.org>
|
||||
|
||||
* shr.el (shr-table-horizontal-line): Revert infinite loops introduced
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue