summaryrefslogtreecommitdiff
path: root/lisp/vc/vc-filewise.el
diff options
context:
space:
mode:
authorSimon Leinen <simon.leinen@switch.ch>2014-11-26 13:22:35 -0500
committerEric S. Raymond <esr@thyrsus.com>2014-11-26 13:22:35 -0500
commit4e0f8f7b2da47a59da317ebcc5c85ef9d3ee3b68 (patch)
treea45211bf424e2caa00c56cc3063fa6526377c5a7 /lisp/vc/vc-filewise.el
parent181b12e7fd604f59faba0aaa9d0b453dc06eab4d (diff)
downloademacs-4e0f8f7b2da47a59da317ebcc5c85ef9d3ee3b68.tar.gz
Fix for vc-filewise.el unresolved-call glitch.
Diffstat (limited to 'lisp/vc/vc-filewise.el')
-rw-r--r--lisp/vc/vc-filewise.el2
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)