From 3f571bdd6889b09b8dee85d7d995097392a7cf1e Mon Sep 17 00:00:00 2001 From: Eric Abrahamsen Date: Mon, 22 Jul 2019 10:56:34 -0700 Subject: [PATCH] Fix case of IMAP Noselect flag * lisp/gnus/nnimap.el (nnimap-get-groups): We should be looking for %Noselect, not %NoSelect. --- lisp/gnus/nnimap.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 4a1ab2cca5c..49b997cb0b8 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/nnimap.el @@ -1340,7 +1340,7 @@ If LIMIT, first try to limit the search to the N last articles." (progn (end-of-line) (skip-chars-backward " \r\"") (point))))) - (unless (member '%NoSelect flags) + (unless (member '%Noselect flags) (let* ((group (utf7-decode (if (stringp group) group (format "%s" group)) t)) (group (cond ((or (not prefix) -- 2.39.2