emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

master cb968b48cb 2/2: ; * lisp/vc/vc.el (vc-prepare-patch): Fix plurali


From: Philip Kaludercic
Subject: master cb968b48cb 2/2: ; * lisp/vc/vc.el (vc-prepare-patch): Fix pluralisation
Date: Sun, 16 Oct 2022 05:38:13 -0400 (EDT)

branch: master
commit cb968b48cbe480364d39476e4d1c6da802e304f0
Author: Philip Kaludercic <philipk@posteo.net>
Commit: Philip Kaludercic <philipk@posteo.net>

    ; * 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 5876cb34dd..8d0680888a 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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]