From: Eric Abrahamsen Date: Thu, 13 Jun 2019 22:09:24 +0000 (-0700) Subject: Make sure Gnus imap group names are decoded before searching X-Git-Tag: emacs-26.3~81 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=e5873389e13fd6f1bc0448abfd1fdf1af5e85f1a;p=emacs.git 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. --- diff --git a/lisp/gnus/nnir.el b/lisp/gnus/nnir.el index 05b2f0aa8a7..0062cd85893 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)