diff options
| -rw-r--r-- | lisp/gnus/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/gnus/nnimap.el | 3 |
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 @@ | |||
| 1 | 2012-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 | |||
| 1 | 2012-01-28 Lars Ingebrigtsen <larsi@gnus.org> | 6 | 2012-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) |