aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/vc.el9
1 files changed, 9 insertions, 0 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 88d023a422f..fa2d45e1a3a 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -2457,6 +2457,15 @@ to provide the `find-revision' operation instead."
2457 (funcall update-function 2457 (funcall update-function
2458 (mapcar (lambda (file) (list file default-state)) files))) 2458 (mapcar (lambda (file) (list file default-state)) files)))
2459 2459
2460(defun vc-default-mark-resolved (backend files)
2461 (message
2462 (substitute-command-keys
2463 "Conflicts have been resolved in %s. \
2464Type \\[vc-next-action] to check in changes.")
2465 (if (> (length files) 1)
2466 (format "%d files" (length files))
2467 "this file")))
2468
2460(defun vc-check-headers () 2469(defun vc-check-headers ()
2461 "Check if the current file has any headers in it." 2470 "Check if the current file has any headers in it."
2462 (interactive) 2471 (interactive)