diff options
author | Simon Leinen <simon.leinen@switch.ch> | 2014-11-26 13:22:35 -0500 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 2014-11-26 13:22:35 -0500 |
commit | 4e0f8f7b2da47a59da317ebcc5c85ef9d3ee3b68 (patch) | |
tree | a45211bf424e2caa00c56cc3063fa6526377c5a7 /lisp/vc/vc-filewise.el | |
parent | 181b12e7fd604f59faba0aaa9d0b453dc06eab4d (diff) | |
download | emacs-4e0f8f7b2da47a59da317ebcc5c85ef9d3ee3b68.tar.gz emacs-4e0f8f7b2da47a59da317ebcc5c85ef9d3ee3b68.tar.bz2 emacs-4e0f8f7b2da47a59da317ebcc5c85ef9d3ee3b68.zip |
Fix for vc-filewise.el unresolved-call glitch.
Diffstat (limited to 'lisp/vc/vc-filewise.el')
-rw-r--r-- | lisp/vc/vc-filewise.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/vc/vc-filewise.el b/lisp/vc/vc-filewise.el index bc8a8dec416..4a05c9876b6 100644 --- a/lisp/vc/vc-filewise.el +++ b/lisp/vc/vc-filewise.el @@ -41,7 +41,7 @@ If the file is not registered, or the master name is not known, return nil." ;; vc-BACKEND-registered explicitly (let ((backend (vc-backend file))) (if (and backend - (vc-call-backend backend 'registered file)) + (vc-filewise-registered backend file)) (vc-file-getprop file 'vc-name))))) (defun vc-rename-master (oldmaster newfile templates) |