aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEric S. Raymond <[email protected]>2008-05-05 15:08:59 +0000
committerEric S. Raymond <[email protected]>2008-05-05 15:08:59 +0000
commitd5079317f7dd989cb3f392055fd68379c398132a (patch)
treeb50fbd0ad5bf13bb1f963b03c2a1a1eaa3d9726a
parent7444d6ab9f9b68e3a057560dc6d6e6848c18f683 (diff)
Fix a compilation warning.
-rw-r--r--lisp/vc.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/vc.el b/lisp/vc.el
index 9387bf7391..4008b2f80f 100644
--- a/lisp/vc.el
+++ b/lisp/vc.el
@@ -674,6 +674,7 @@
(eval-when-compile
(require 'dired)
+ (require 'dired-aux)
(require 'cl))
(unless (assoc 'vc-parent-buffer minor-mode-alist)
@@ -2182,7 +2183,7 @@ outside of VC) and one wants to do some operation on it."
(defun vc-generic-status-printer (fileentry)
(let* ((file (vc-dir-fileinfo->name fileentry))
(backend (vc-responsible-backend file)))
- (vc-call-backend backend 'status-printer file)))
+ (vc-call-backend backend 'status-printer fileentry)))
(defun vc-generic-state (file)
(let ((backend (vc-responsible-backend file)))