* elmo-imap4.el (elmo-imap4-response-get-selectable-mailbox-list): Fix
authorokazaki <okazaki>
Thu, 27 Mar 2003 07:52:45 +0000 (07:52 +0000)
committerokazaki <okazaki>
Thu, 27 Mar 2003 07:52:45 +0000 (07:52 +0000)
the case of the name attribute "\Noselect".
(Submitted by: Kimura Fuyuki <fuyuki@hadaly.org>)

elmo/elmo-imap4.el

index 0d29d81..535a0b1 100644 (file)
@@ -607,7 +607,7 @@ BUFFER must be a single-byte buffer."
        (mapcar
         (lambda (entry)
           (if (and (eq 'list (car entry))
-                   (not (member "\\NoSelect" (nth 1 (nth 1 entry)))))
+                   (not (member "\\Noselect" (nth 1 (nth 1 entry)))))
               (car (nth 1 entry))))
         response)))