mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-02-08 00:33:13 -08:00
(vc-revision-other-window): Fix argument to backend function
revision-completion-table; it expects a list.
This commit is contained in:
parent
5e5ae184f4
commit
bea2e9691d
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
|||
2009-06-04 Johan Bockgård <bojohan@gnu.org>
|
||||
|
||||
* vc.el (vc-revision-other-window): Fix argument to backend
|
||||
function revision-completion-table; it expects a list.
|
||||
|
||||
2009-06-04 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
* frame.el (delete-other-frames): Only delete frames on the
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue