From: Dan Nicolaescu Date: Sat, 10 May 2008 19:21:30 +0000 (+0000) Subject: (vc-hooks, ewoc): Require. X-Git-Tag: emacs-pretest-23.0.90~5638 X-Git-Url: https://code.delx.au/gnu-emacs/commitdiff_plain/d9a3d80e56e26f65ca3b35b242436a2b16dbf535?hp=ec4149ff60687d7acba5435e33cc0365e0c5738a (vc-hooks, ewoc): Require. (vc-log-edit, vc-buffer-sync): Declare for byte compiler. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index d01ac40340..b58775e639 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2008-05-10 Dan Nicolaescu + * vc-dispatcher.el (vc-hooks, ewoc): Require. + (vc-log-edit, vc-buffer-sync): Declare for byte compiler. + * vc-hg.el (vc-hg-diff, vc-hg-annotate-command): Use when not if. 2008-05-10 Chong Yidong diff --git a/lisp/vc-dispatcher.el b/lisp/vc-dispatcher.el index 3a1de2575f..dd79b555cf 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