emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] emacs-26 e587338: Make sure Gnus imap group names are deco


From: Eric Abrahamsen
Subject: [Emacs-diffs] emacs-26 e587338: Make sure Gnus imap group names are decoded before searching
Date: Fri, 14 Jun 2019 11:04:58 -0400 (EDT)

branch: emacs-26
commit e5873389e13fd6f1bc0448abfd1fdf1af5e85f1a
Author: Eric Abrahamsen <address@hidden>
Commit: Eric Abrahamsen <address@hidden>

    Make sure Gnus imap group names are decoded before searching
    
    do not merge (fix unnecessary in Emacs 27)
    
    * lisp/gnus/nnir.el (nnir-run-imap): Ensure that non-ascii group names
      have been fully decoded before passing them to imap search.
---
 lisp/gnus/nnir.el | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el
index 05b2f0a..0062cd8 100644
--- a/lisp/gnus/nnir.el
+++ b/lisp/gnus/nnir.el
@@ -969,6 +969,7 @@ details on the language and supported extensions."
          (mapcar
           #'(lambda (group)
             (let (artlist)
+             (setq group (nnimap-decode-gnus-group group))
               (condition-case ()
                   (when (nnimap-change-group
                          (gnus-group-short-name group) server)



reply via email to

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