From: Lars Magne Ingebrigtsen Date: Mon, 4 Oct 2010 20:01:37 +0000 (+0200) Subject: (nnimap-finish-retrieve-group-infos): Message while waiting for data. X-Git-Url: https://cgit.sxemacs.org/?p=gnus;a=commitdiff_plain;h=fcd99973cce5d0c0e07b280711c2514815d3b50f (nnimap-finish-retrieve-group-infos): Message while waiting for data. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index fb086e72e..029d98e92 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2010-10-04 Lars Magne Ingebrigtsen + * nnimap.el (nnimap-finish-retrieve-group-infos): Message while waiting + for data. + * spam-report.el (spam-report-url-ping-plain): Don't query about killing the process. diff --git a/lisp/nnimap.el b/lisp/nnimap.el index 1785fd982..0be841ab8 100644 --- a/lisp/nnimap.el +++ b/lisp/nnimap.el @@ -977,7 +977,7 @@ textual parts.") (nnimap-possibly-change-group nil server)) (with-current-buffer (nnimap-buffer) ;; Wait for the final data to trickle in. - (when (nnimap-wait-for-response (cadar sequences)) + (when (nnimap-wait-for-response (cadar sequences) t) ;; Now we should have all the data we need, no matter whether ;; we're QRESYNCING, fetching all the flags from scratch, or ;; just fetching the last 100 flags per group. @@ -1254,7 +1254,7 @@ textual parts.") (point-min)) t))) (when messagep - (message "Read %dKB" (/ (buffer-size) 1000))) + (message "nnimap read %dk" (/ (buffer-size) 1000))) (nnheader-accept-process-output process) (goto-char (point-max))) openp))