diff options
Diffstat (limited to 'lisp/net/imap.el')
| -rw-r--r-- | lisp/net/imap.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/net/imap.el b/lisp/net/imap.el index 22bebbb0f0c..bb298d11d3c 100644 --- a/lisp/net/imap.el +++ b/lisp/net/imap.el | |||
| @@ -1729,11 +1729,11 @@ See `imap-enable-exchange-bug-workaround'." | |||
| 1729 | ;; robust just to check for a BAD response to the | 1729 | ;; robust just to check for a BAD response to the |
| 1730 | ;; attempted fetch. | 1730 | ;; attempted fetch. |
| 1731 | (string-match "The specified message set is invalid" | 1731 | (string-match "The specified message set is invalid" |
| 1732 | (cadr data))) | 1732 | (error-slot-value data 1))) |
| 1733 | (with-current-buffer (or buffer (current-buffer)) | 1733 | (with-current-buffer (or buffer (current-buffer)) |
| 1734 | (setq-local imap-enable-exchange-bug-workaround t) | 1734 | (setq-local imap-enable-exchange-bug-workaround t) |
| 1735 | (imap-fetch (cdr uids) props receive nouidfetch)) | 1735 | (imap-fetch (cdr uids) props receive nouidfetch)) |
| 1736 | (signal (car data) (cdr data)))))) | 1736 | (signal data))))) |
| 1737 | 1737 | ||
| 1738 | (defun imap-message-copyuid-1 (mailbox) | 1738 | (defun imap-message-copyuid-1 (mailbox) |
| 1739 | (if (imap-capability 'UIDPLUS) | 1739 | (if (imap-capability 'UIDPLUS) |