From bea2e9691dfe67fde382a689ca2f7d3a33889d43 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Johan=20Bockg=C3=A5rd?= Date: Thu, 4 Jun 2009 20:31:52 +0000 Subject: [PATCH] (vc-revision-other-window): Fix argument to backend function revision-completion-table; it expects a list. --- lisp/ChangeLog | 5 +++++ lisp/vc.el | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d21902e9ef5..74ade1574ad 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,3 +1,8 @@ +2009-06-04 Johan Bockgård + + * vc.el (vc-revision-other-window): Fix argument to backend + function revision-completion-table; it expects a list. + 2009-06-04 Stefan Monnier * frame.el (delete-other-frames): Only delete frames on the diff --git a/lisp/vc.el b/lisp/vc.el index 77243192f78..bbef5df756b 100644 --- a/lisp/vc.el +++ b/lisp/vc.el @@ -1613,7 +1613,7 @@ If `F.~REV~' already exists, use it instead of checking it out again." (save-current-buffer (vc-ensure-vc-buffer) (let ((completion-table - (vc-call revision-completion-table buffer-file-name)) + (vc-call revision-completion-table (list buffer-file-name))) (prompt "Revision to visit (default is working revision): ")) (list (if completion-table -- 2.11.4.GIT