aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric Abrahamsen2019-07-22 10:56:34 -0700
committerEric Abrahamsen2019-07-22 10:57:09 -0700
commit3f571bdd6889b09b8dee85d7d995097392a7cf1e (patch)
treeb164fa4729962d74c5ffbaefdb7aa01548762882
parent7e294d55e1506443e711f44c85caf490ded80fe8 (diff)
downloademacs-3f571bdd6889b09b8dee85d7d995097392a7cf1e.tar.gz
emacs-3f571bdd6889b09b8dee85d7d995097392a7cf1e.zip
Fix case of IMAP Noselect flag
* lisp/gnus/nnimap.el (nnimap-get-groups): We should be looking for %Noselect, not %NoSelect.
-rw-r--r--lisp/gnus/nnimap.el2
1 files changed, 1 insertions, 1 deletions
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."
1340 (progn (end-of-line) 1340 (progn (end-of-line)
1341 (skip-chars-backward " \r\"") 1341 (skip-chars-backward " \r\"")
1342 (point))))) 1342 (point)))))
1343 (unless (member '%NoSelect flags) 1343 (unless (member '%Noselect flags)
1344 (let* ((group (utf7-decode (if (stringp group) group 1344 (let* ((group (utf7-decode (if (stringp group) group
1345 (format "%s" group)) t)) 1345 (format "%s" group)) t))
1346 (group (cond ((or (not prefix) 1346 (group (cond ((or (not prefix)