From: yamaoka Date: Sun, 26 Dec 2004 14:54:52 +0000 (+0000) Subject: Synch to No Gnus 200412261453. X-Git-Tag: t-gnus-6_17_4-quimby-~615 X-Git-Url: http://git.chise.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ceb24e3c6d9b09f88a677c1f840d2e88ed04cd4e;p=elisp%2Fgnus.git- Synch to No Gnus 200412261453. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index b9aa137..8a17192 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,7 @@ +2004-12-26 Tsuyoshi AKIHO + + * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name. + 2004-12-26 Katsumi Yamaoka * nnrss.el: Require rfc2047 and mml. diff --git a/lisp/gnus-sum.el b/lisp/gnus-sum.el index 3e43476..47744d9 100644 --- a/lisp/gnus-sum.el +++ b/lisp/gnus-sum.el @@ -7295,11 +7295,12 @@ If BACKWARD, the previous article is selected instead of the next." (if (and group (not (gnus-ephemeral-group-p gnus-newsgroup-name))) (format " (Type %s for %s [%s])" - (single-key-description cmd) group + (single-key-description cmd) + (gnus-group-decoded-name group) (gnus-group-unread group)) (format " (Type %s to exit %s)" (single-key-description cmd) - gnus-newsgroup-name)))) + (gnus-group-decoded-name gnus-newsgroup-name))))) ;; Confirm auto selection. (setq key (car (setq keve (gnus-read-event-char prompt))) ended t)