From: okazaki Date: Thu, 27 Mar 2003 07:52:45 +0000 (+0000) Subject: * elmo-imap4.el (elmo-imap4-response-get-selectable-mailbox-list): Fix X-Git-Tag: merged-trunk-to-elmo-mark-16~6 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=dc5a9beb28fa77d1c7c0b76615d65bcccc29ebec;p=elisp%2Fwanderlust.git * elmo-imap4.el (elmo-imap4-response-get-selectable-mailbox-list): Fix the case of the name attribute "\Noselect". (Submitted by: Kimura Fuyuki ) --- diff --git a/elmo/elmo-imap4.el b/elmo/elmo-imap4.el index 0d29d81..535a0b1 100644 --- a/elmo/elmo-imap4.el +++ b/elmo/elmo-imap4.el @@ -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)))