summaryrefslogtreecommitdiff
path: root/lisp/vc-dispatcher.el
diff options
context:
space:
mode:
authorDan Nicolaescu <dann@ics.uci.edu>2008-05-10 19:21:30 +0000
committerDan Nicolaescu <dann@ics.uci.edu>2008-05-10 19:21:30 +0000
commitd9a3d80e56e26f65ca3b35b242436a2b16dbf535 (patch)
tree9797ca6ab5e19b848638d81aef70e93a4a141f16 /lisp/vc-dispatcher.el
parentec4149ff60687d7acba5435e33cc0365e0c5738a (diff)
downloademacs-d9a3d80e56e26f65ca3b35b242436a2b16dbf535.tar.gz
(vc-hooks, ewoc): Require.
(vc-log-edit, vc-buffer-sync): Declare for byte compiler.
Diffstat (limited to 'lisp/vc-dispatcher.el')
-rw-r--r--lisp/vc-dispatcher.el8
1 files changed, 7 insertions, 1 deletions
diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el
index 3a1de2575fb..dd79b555cf6 100644
--- a/lisp/vc-dispatcher.el
+++ b/lisp/vc-dispatcher.el
@@ -120,11 +120,15 @@
;; - vc-dir-menu-map-filter hook call needs to be moved to vc.el.
;;
-(provide 'vc-dispatcher)
+(require 'vc-hooks)
+(require 'ewoc)
(eval-when-compile
(require 'cl))
+(declare-function vc-log-edit "vc" (fileset))
+(declare-function vc-buffer-sync "vc" (&optional not-urgent))
+
;; General customization
(defcustom vc-logentry-check-hook nil
@@ -1355,5 +1359,7 @@ containing that file. Otherwise, throw an error."
nil (lambda () (vc-dispatcher-in-fileset-p files))))
files))
+(provide 'vc-dispatcher)
+
;; arch-tag: 7d08b17f-5470-4799-914b-bfb9fcf6a246
;;; vc-dispatcher.el ends here