From 81d1e4e06988b1450ecb3ecf5d45c517fc83b887 Mon Sep 17 00:00:00 2001 From: Lars Ingebrigtsen Date: Thu, 9 Feb 2012 06:17:23 +0100 Subject: [PATCH] * nnimap.el (nnimap-wait-for-response): Minor fixup of message string. --- lisp/ChangeLog | 2 ++ lisp/nnimap.el | 7 +++++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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))) -- 2.25.1