From cb968b48cbe480364d39476e4d1c6da802e304f0 Mon Sep 17 00:00:00 2001 From: Philip Kaludercic Date: Sun, 16 Oct 2022 11:16:52 +0200 Subject: [PATCH] ; * lisp/vc/vc.el (vc-prepare-patch): Fix pluralisation --- lisp/vc/vc.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.39.5