aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Ingebrigtsen2012-01-30 22:03:11 +0000
committerKatsumi Yamaoka2012-01-30 22:03:11 +0000
commitd2859a4a2e0d19082f82fc899bb812d7ca9d1c35 (patch)
treee5695b1609748ff56457c787778c221b5b5d1dfd
parent3498f31397032a853c3fdcc78963aca053b91743 (diff)
downloademacs-d2859a4a2e0d19082f82fc899bb812d7ca9d1c35.tar.gz
emacs-d2859a4a2e0d19082f82fc899bb812d7ca9d1c35.zip
nnimap.el (nnimap-wait-for-response): Include the imap server name in the message for greater debuggability.
-rw-r--r--lisp/gnus/ChangeLog5
-rw-r--r--lisp/gnus/nnimap.el3
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/gnus/ChangeLog b/lisp/gnus/ChangeLog
index 316e266c5e4..93ceeebf0c1 100644
--- a/lisp/gnus/ChangeLog
+++ b/lisp/gnus/ChangeLog
@@ -1,3 +1,8 @@
12012-01-30 Lars Ingebrigtsen <larsi@gnus.org>
2
3 * nnimap.el (nnimap-wait-for-response): Include the imap server name in
4 the message for greater debuggability.
5
12012-01-28 Lars Ingebrigtsen <larsi@gnus.org> 62012-01-28 Lars Ingebrigtsen <larsi@gnus.org>
2 7
3 * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode' 8 * mm-view.el (mm-display-inline-fontify): Bind `font-lock-support-mode'
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el
index afa4bdf3dbd..36245af4bc4 100644
--- a/lisp/gnus/nnimap.el
+++ b/lisp/gnus/nnimap.el
@@ -1738,7 +1738,8 @@ textual parts.")
1738 (not (looking-at (format "%d .*\n" sequence))))) 1738 (not (looking-at (format "%d .*\n" sequence)))))
1739 (when messagep 1739 (when messagep
1740 (nnheader-message-maybe 1740 (nnheader-message-maybe
1741 7 "nnimap read %dk" (/ (buffer-size) 1000))) 1741 7 "nnimap read %dk from %s" (/ (buffer-size) 1000)
1742 nnimap-address))
1742 (nnheader-accept-process-output process) 1743 (nnheader-accept-process-output process)
1743 (goto-char (point-max))) 1744 (goto-char (point-max)))
1744 openp) 1745 openp)