# HG changeset patch # User Dan Nicolaescu # Date 1210447290 0 # Node ID 4c35f4ccba9ebba8f5852d9802d9a2b78c6ba83a # Parent 1c9a3c7fa4f1886ff937a61337d4ab9e4e9d77c6 (vc-hooks, ewoc): Require. (vc-log-edit, vc-buffer-sync): Declare for byte compiler. diff -r 1c9a3c7fa4f1 -r 4c35f4ccba9e lisp/ChangeLog --- a/lisp/ChangeLog Sat May 10 19:10:31 2008 +0000 +++ b/lisp/ChangeLog Sat May 10 19:21:30 2008 +0000 @@ -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 -r 1c9a3c7fa4f1 -r 4c35f4ccba9e lisp/vc-dispatcher.el --- a/lisp/vc-dispatcher.el Sat May 10 19:10:31 2008 +0000 +++ b/lisp/vc-dispatcher.el Sat May 10 19:21:30 2008 +0000 @@ -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 @@ nil (lambda () (vc-dispatcher-in-fileset-p files)))) files)) +(provide 'vc-dispatcher) + ;; arch-tag: 7d08b17f-5470-4799-914b-bfb9fcf6a246 ;;; vc-dispatcher.el ends here