From: Eric Abrahamsen Date: Mon, 22 Jul 2019 17:56:34 +0000 (-0700) Subject: Fix case of IMAP Noselect flag X-Git-Tag: emacs-27.0.90~1817^2~169 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f571bdd6889b09b8dee85d7d995097392a7cf1e;p=emacs.git Fix case of IMAP Noselect flag * lisp/gnus/nnimap.el (nnimap-get-groups): We should be looking for %Noselect, not %NoSelect. --- 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)