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:
parent
f93d669a16
commit
51c77a27f1
1 changed files with 4 additions and 4 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue