From 9102f1eaafd51404ca93dacec8785dccad2a2ea0 Mon Sep 17 00:00:00 2001 From: Juri Linkov Date: Sun, 6 Oct 2024 20:16:21 +0300 Subject: [PATCH] * lisp/vc/diff-mode.el (diff-apply-buffer): Add more failures. Add 'failures' as an argument to the 'message' call. --- lisp/vc/diff-mode.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lisp/vc/diff-mode.el b/lisp/vc/diff-mode.el index df55ca2ad80..d085c721bc8 100644 --- a/lisp/vc/diff-mode.el +++ b/lisp/vc/diff-mode.el @@ -2153,7 +2153,8 @@ the number of failed hunk applications otherwise." (t (message (ngettext "%d hunk failed; no buffers changed" "%d hunks failed; no buffers changed" - failures)) + failures) + failures) failures)))) (defalias 'diff-mouse-goto-source #'diff-goto-source)