From: Eric S. Raymond Date: Mon, 8 Oct 2007 23:18:31 +0000 (+0000) Subject: Correct a bug that was revealed during a review of new VC. X-Git-Tag: emacs-pretest-23.0.90~10489 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3f57aeb7d0d4acbb698ec91f292b78d9f05333da;p=emacs.git Correct a bug that was revealed during a review of new VC. --- 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)