From dc5a9beb28fa77d1c7c0b76615d65bcccc29ebec Mon Sep 17 00:00:00 2001 From: okazaki Date: Thu, 27 Mar 2003 07:52:45 +0000 Subject: [PATCH] * elmo-imap4.el (elmo-imap4-response-get-selectable-mailbox-list): Fix the case of the name attribute "\Noselect". (Submitted by: Kimura Fuyuki ) --- elmo/elmo-imap4.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) -- 1.7.10.4