]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix last fix.
authorChong Yidong <cyd@stupidchicken.com>
Thu, 25 Sep 2008 01:46:06 +0000 (01:46 +0000)
committerChong Yidong <cyd@stupidchicken.com>
Thu, 25 Sep 2008 01:46:06 +0000 (01:46 +0000)
lisp/vc.el

index b4dd9eaf6efd5d474d638eef74403be9fe64dcb8..64b1e943f82a040e3edd938a4a231104f63a5207 100644 (file)
@@ -1286,18 +1286,18 @@ After check-out, runs the normal hook `vc-checkout-hook'."
   (run-hooks 'vc-checkout-hook))
 
 (defun vc-mark-resolved (backend files)
-  (with-vc-properties
-   files
-   (vc-call-backend backend 'mark-resolved files)
-   (message
-    (substitute-command-keys
-     "Conflicts have been resolved in %s.  \
+  (prog1 (with-vc-properties
+         files
+         (vc-call-backend backend 'mark-resolved files)
+         ;; FIXME: Is this TRTD?  Might not be.
+         `((vc-state . edited)))
+    (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"))
-   ;; FIXME: Is this TRTD?  Might not be.
-   `((vc-state . edited))))
+     (if (> (length files) 1)
+        (format "%d files" (length files))
+       "this file"))))
 
 (defun vc-steal-lock (file rev owner)
   "Steal the lock on FILE."