summaryrefslogtreecommitdiff
path: root/lisp/vc/vc.el
diff options
context:
space:
mode:
authorPhilip Kaludercic <philipk@posteo.net>2022-10-16 11:16:52 +0200
committerPhilip Kaludercic <philipk@posteo.net>2022-10-16 11:37:51 +0200
commitcb968b48cbe480364d39476e4d1c6da802e304f0 (patch)
tree31d0dfdc7133b964d435c23de0ef855719930bf2 /lisp/vc/vc.el
parentd8624ad51984ff8dbae57120e7616e4e91d4ab2c (diff)
downloademacs-cb968b48cbe480364d39476e4d1c6da802e304f0.tar.gz
; * lisp/vc/vc.el (vc-prepare-patch): Fix pluralisation
Diffstat (limited to 'lisp/vc/vc.el')
-rw-r--r--lisp/vc/vc.el3
1 files changed, 2 insertions, 1 deletions
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