From ceb24e3c6d9b09f88a677c1f840d2e88ed04cd4e Mon Sep 17 00:00:00 2001 From: yamaoka Date: Sun, 26 Dec 2004 14:54:52 +0000 Subject: [PATCH] Synch to No Gnus 200412261453. --- lisp/ChangeLog | 4 ++++ lisp/gnus-sum.el | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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) -- 1.7.10.4