summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2016-02-07 15:04:31 +1100
committerLars Ingebrigtsen <larsi@gnus.org>2016-02-07 15:04:31 +1100
commit51c77a27f1b5213ca190f25cd68135e3b5bb2c20 (patch)
tree880e251bdefb4f29cde11adc048a76a58de0bde2
parentf93d669a16bd3cb3f43f0c8cfd22fe18b627a6a1 (diff)
downloademacs-51c77a27f1b5213ca190f25cd68135e3b5bb2c20.tar.gz
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.
-rw-r--r--lisp/gnus/gnus-sum.el8
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 5972f29dd88..378d342d669 100644
--- a/lisp/gnus/gnus-sum.el
+++ b/lisp/gnus/gnus-sum.el
@@ -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