]> git.eshelyaron.com Git - emacs.git/commitdiff
(vc-default-mark-resolved): New function.
authorChong Yidong <cyd@stupidchicken.com>
Wed, 24 Sep 2008 19:14:58 +0000 (19:14 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Wed, 24 Sep 2008 19:14:58 +0000 (19:14 +0000)
lisp/vc.el

index 88d023a422f47b6cdc34afdcbca3abc23ea773fb..fa2d45e1a3a68c87ba446bd555a883a5862a9860 100644 (file)
@@ -2457,6 +2457,15 @@ to provide the `find-revision' operation instead."
   (funcall update-function
            (mapcar (lambda (file) (list file default-state)) files)))
 
+(defun vc-default-mark-resolved (backend files)
+  (message
+   (substitute-command-keys
+    "Conflicts have been resolved in %s.  \
+Type \\[vc-next-action] to check in changes.")
+   (if (> (length files) 1)
+       (format "%d files" (length files))
+     "this file")))
+
 (defun vc-check-headers ()
   "Check if the current file has any headers in it."
   (interactive)