diff options
| author | Lars Ingebrigtsen <larsi@gnus.org> | 2012-02-09 06:05:43 +0000 |
|---|---|---|
| committer | Katsumi Yamaoka <yamaoka@jpl.org> | 2012-02-09 06:05:43 +0000 |
| commit | 65e6fb28e0861267461c39bae222e731c0840f8b (patch) | |
| tree | 59169a345273ad0cd567cacb8ad2eb1e19924e5e /lisp/gnus/nnimap.el | |
| parent | 001bf877d084f3fe00a0db77eb4db26d8044de86 (diff) | |
| download | emacs-65e6fb28e0861267461c39bae222e731c0840f8b.tar.gz | |
nnimap.el (nnimap-wait-for-response): Minor fixup of message string.
Diffstat (limited to 'lisp/gnus/nnimap.el')
| -rw-r--r-- | lisp/gnus/nnimap.el | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lisp/gnus/nnimap.el b/lisp/gnus/nnimap.el index 4c75f721ff6..de4d248c624 100644 --- a/lisp/gnus/nnimap.el +++ b/lisp/gnus/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))) |
