aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohan Bockgård2009-06-04 20:31:52 +0000
committerJohan Bockgård2009-06-04 20:31:52 +0000
commitbea2e9691dfe67fde382a689ca2f7d3a33889d43 (patch)
treebd8ab3c46e2474294372b9eff84828f111b6e932
parent5e5ae184f41162f3bc8fa5eb05833aaa54bd7ad7 (diff)
downloademacs-bea2e9691dfe67fde382a689ca2f7d3a33889d43.tar.gz
emacs-bea2e9691dfe67fde382a689ca2f7d3a33889d43.zip
(vc-revision-other-window): Fix argument to backend function
revision-completion-table; it expects a list.
-rw-r--r--lisp/ChangeLog5
-rw-r--r--lisp/vc.el2
2 files changed, 6 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d21902e9ef5..74ade1574ad 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,8 @@
12009-06-04 Johan Bockgård <bojohan@gnu.org>
2
3 * vc.el (vc-revision-other-window): Fix argument to backend
4 function revision-completion-table; it expects a list.
5
12009-06-04 Stefan Monnier <monnier@iro.umontreal.ca> 62009-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
2 7
3 * frame.el (delete-other-frames): Only delete frames on the 8 * 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."
1613 (save-current-buffer 1613 (save-current-buffer
1614 (vc-ensure-vc-buffer) 1614 (vc-ensure-vc-buffer)
1615 (let ((completion-table 1615 (let ((completion-table
1616 (vc-call revision-completion-table buffer-file-name)) 1616 (vc-call revision-completion-table (list buffer-file-name)))
1617 (prompt "Revision to visit (default is working revision): ")) 1617 (prompt "Revision to visit (default is working revision): "))
1618 (list 1618 (list
1619 (if completion-table 1619 (if completion-table