emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] emacs-25 51c77a2 1/2: Display non-ASCII group names better


From: Lars Ingebrigtsen
Subject: [Emacs-diffs] emacs-25 51c77a2 1/2: Display non-ASCII group names better in prompts
Date: Sun, 07 Feb 2016 06:58:13 +0000

branch: emacs-25
commit 51c77a27f1b5213ca190f25cd68135e3b5bb2c20
Author: Lars Ingebrigtsen <address@hidden>
Commit: Lars Ingebrigtsen <address@hidden>

    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.
---
 lisp/gnus/gnus-sum.el |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/lisp/gnus/gnus-sum.el b/lisp/gnus/gnus-sum.el
index 5972f29..378d342 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]