1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

nnimap.el (nnimap-wait-for-response): Include the imap server name in the message for greater debuggability.

This commit is contained in:
Lars Ingebrigtsen 2012-01-30 22:03:11 +00:00 committed by Katsumi Yamaoka
parent 3498f31397
commit d2859a4a2e
2 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2012-01-30 Lars Ingebrigtsen <larsi@gnus.org>
* nnimap.el (nnimap-wait-for-response): Include the imap server name in
the message for greater debuggability.
2012-01-28 Lars Ingebrigtsen <larsi@gnus.org>
* mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'

View file

@ -1738,7 +1738,8 @@ textual parts.")
(not (looking-at (format "%d .*\n" sequence)))))
(when messagep
(nnheader-message-maybe
7 "nnimap read %dk" (/ (buffer-size) 1000)))
7 "nnimap read %dk from %s" (/ (buffer-size) 1000)
nnimap-address))
(nnheader-accept-process-output process)
(goto-char (point-max)))
openp)