From: Lars Ingebrigtsen Date: Thu, 9 Feb 2012 05:17:23 +0000 (+0100) Subject: * nnimap.el (nnimap-wait-for-response): Minor fixup of message string. X-Git-Url: https://cgit.sxemacs.org/?a=commitdiff_plain;h=81d1e4e06988b1450ecb3ecf5d45c517fc83b887;p=gnus * nnimap.el (nnimap-wait-for-response): Minor fixup of message string. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 145d16e12..020de90b0 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,7 @@ 2012-02-09 Lars Ingebrigtsen + * nnimap.el (nnimap-wait-for-response): Minor fixup of message string. + * gnus.el (gnus-server-extend-method): Don't add an -address component if the method already has one (bug#9676). diff --git a/lisp/nnimap.el b/lisp/nnimap.el index 4c75f721f..de4d248c6 100644 --- a/lisp/nnimap.el +++ b/lisp/nnimap.el @@ -1754,8 +1754,11 @@ textual parts.") 7 "nnimap read %dk from %s%s" (/ (buffer-size) 1000) nnimap-address (if (not (zerop (nnimap-initial-resync nnimap-object))) - (format " (initial sync of %d groups; please wait)" - (nnimap-initial-resync nnimap-object)) + (format " (initial sync of %d group%s; please wait)" + (nnimap-initial-resync nnimap-object) + (if (= (nnimap-initial-resync nnimap-object) 1) + "" + "s")) ""))) (nnheader-accept-process-output process) (goto-char (point-max)))