From: Philip Kaludercic Date: Sun, 16 Oct 2022 09:16:52 +0000 (+0200) Subject: ; * lisp/vc/vc.el (vc-prepare-patch): Fix pluralisation X-Git-Tag: emacs-29.0.90~1616^2~590 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cb968b48cbe480364d39476e4d1c6da802e304f0;p=emacs.git ; * lisp/vc/vc.el (vc-prepare-patch): Fix pluralisation --- diff --git a/lisp/vc/vc.el b/lisp/vc/vc.el index 5876cb34dd6..8d0680888a4 100644 --- a/lisp/vc/vc.el +++ b/lisp/vc/vc.el @@ -3371,7 +3371,8 @@ revisions, those revisions will be used." revisions))) (if vc-prepare-patches-separately (dolist (patch (reverse patches) - (message "Prepared %d patches..." (length patches))) + (message "Prepared %d patch%s..." (length patches) + (if (length> patches 1) "es" ""))) (compose-mail addressee (plist-get patch :subject) nil nil nil nil