Display non-ASCII group names better in prompts

* lisp/gnus/gnus-sum.el (gnus-articles-to-read): To decode the
group name, we have to do that before we remove the prefix.
This commit is contained in:
Lars Ingebrigtsen 2016-02-07 15:04:31 +11:00
parent f93d669a16
commit 51c77a27f1

View file

@ -5896,13 +5896,13 @@ If SELECT-ARTICLES, only select those articles from GROUP."
(if only-read-p
(format
"How many articles from %s (available %d, default %d): "
(gnus-group-decoded-name
(gnus-group-real-name gnus-newsgroup-name))
(gnus-group-real-name
(gnus-group-decoded-name gnus-newsgroup-name))
number default)
(format
"How many articles from %s (%d default): "
(gnus-group-decoded-name
(gnus-group-real-name gnus-newsgroup-name))
(gnus-group-real-name
(gnus-group-decoded-name gnus-newsgroup-name))
default))
nil
nil