From 3f57aeb7d0d4acbb698ec91f292b78d9f05333da Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 8 Oct 2007 23:18:31 +0000 Subject: [PATCH] Correct a bug that was revealed during a review of new VC. --- lisp/vc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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." (if (vc-find-backend-function backend 'print-log) (with-current-buffer "*vc*" (vc-call print-log (list file)) - (vc-call wash-log file) + (vc-call-backend backend 'wash-log) (buffer-string)))) (defun vc-default-unregister (backend file) -- 2.39.2