aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond2007-10-08 23:18:31 +0000
committerEric S. Raymond2007-10-08 23:18:31 +0000
commit3f57aeb7d0d4acbb698ec91f292b78d9f05333da (patch)
tree1384e63448d76d7adaf7c2584fc283067b9b1686
parent1834b39f166d6f16e7c0a9f79101d77a7a19c47c (diff)
downloademacs-3f57aeb7d0d4acbb698ec91f292b78d9f05333da.tar.gz
emacs-3f57aeb7d0d4acbb698ec91f292b78d9f05333da.zip
Correct a bug that was revealed during a review of new VC.
-rw-r--r--lisp/vc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 4ef359e6c1c..9b8f5583a65 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -3050,7 +3050,7 @@ to provide the `find-version' operation instead."
3050 (if (vc-find-backend-function backend 'print-log) 3050 (if (vc-find-backend-function backend 'print-log)
3051 (with-current-buffer "*vc*" 3051 (with-current-buffer "*vc*"
3052 (vc-call print-log (list file)) 3052 (vc-call print-log (list file))
3053 (vc-call wash-log file) 3053 (vc-call-backend backend 'wash-log)
3054 (buffer-string)))) 3054 (buffer-string))))
3055 3055
3056(defun vc-default-unregister (backend file) 3056(defun vc-default-unregister (backend file)