From: Eric S. Raymond Date: Mon, 5 May 2008 15:08:59 +0000 (+0000) Subject: Fix a compilation warning. X-Git-Tag: emacs-pretest-23.0.90~5807 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=d5079317f7dd989cb3f392055fd68379c398132a;p=emacs.git Fix a compilation warning. --- diff --git a/lisp/vc.el b/lisp/vc.el index 9387bf7391a..4008b2f80f6 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)))