mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-15 10:30:25 -08:00
Merge from gnus--devo--0
Revision: emacs@sv.gnu.org/emacs--devo--0--patch-941
This commit is contained in:
parent
f6e7ec0248
commit
b890d447fb
29 changed files with 712 additions and 212 deletions
|
|
@ -1533,10 +1533,11 @@ or 'unseen. The IMAP command tag is returned."
|
|||
(imap-send-command (list "STATUS \""
|
||||
(imap-utf7-encode mailbox)
|
||||
"\" "
|
||||
(format "%s"
|
||||
(if (listp items)
|
||||
items
|
||||
(list items)))))))
|
||||
(upcase
|
||||
(format "%s"
|
||||
(if (listp items)
|
||||
items
|
||||
(list items))))))))
|
||||
|
||||
(defun imap-mailbox-acl-get (&optional mailbox buffer)
|
||||
"Get ACL on mailbox from server in BUFFER."
|
||||
|
|
@ -2524,7 +2525,7 @@ Return nil if no complete line has arrived."
|
|||
(while (and (not (eq (char-after) ?\)))
|
||||
(or (forward-char) t)
|
||||
(looking-at "\\([A-Za-z]+\\) "))
|
||||
(let ((token (match-string 1)))
|
||||
(let ((token (upcase (match-string 1))))
|
||||
(goto-char (match-end 0))
|
||||
(cond ((string= token "MESSAGES")
|
||||
(imap-mailbox-put 'messages (read (current-buffer)) mailbox))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue