(gnus-summary-walk-group-buffer): Decode group name. From Tsuyoshi AKIHO.
authorKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 26 Dec 2004 14:53:52 +0000 (14:53 +0000)
committerKatsumi Yamaoka <yamaoka@jpl.org>
Sun, 26 Dec 2004 14:53:52 +0000 (14:53 +0000)
lisp/ChangeLog
lisp/gnus-sum.el

index e5316b8..d2ad9e3 100644 (file)
@@ -1,3 +1,7 @@
+2004-12-26  Tsuyoshi AKIHO  <akiho@kawachi.zaq.ne.jp>
+
+       * gnus-sum.el (gnus-summary-walk-group-buffer): Decode group name.
+
 2004-12-26  Katsumi Yamaoka  <yamaoka@jpl.org>
 
        * nnrss.el: Require rfc2047 and mml.
index 9101eef..edb5dd5 100644 (file)
@@ -7290,11 +7290,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)