# HG changeset patch # User Dan Nicolaescu # Date 1185156378 0 # Node ID 323f551584a7b52b73ccdc7b7946ffb05af5016c # Parent 264941b7ff14654e9f5b7d8a3de5de132d0cb43e (vc-directory-exclusion-list): Use eval-after-load. diff -r 264941b7ff14 -r 323f551584a7 lisp/ChangeLog --- a/lisp/ChangeLog Mon Jul 23 02:01:13 2007 +0000 +++ b/lisp/ChangeLog Mon Jul 23 02:06:18 2007 +0000 @@ -7,6 +7,7 @@ 2007-07-23 Dan Nicolaescu * vc-git.el: Update status. + (vc-directory-exclusion-list): Use eval-after-load. 2007-07-22 Nick Roberts diff -r 264941b7ff14 -r 323f551584a7 lisp/vc-git.el --- a/lisp/vc-git.el Mon Jul 23 02:01:13 2007 +0000 +++ b/lisp/vc-git.el Mon Jul 23 02:06:18 2007 +0000 @@ -114,7 +114,8 @@ ;; XXX when this backend is considered sufficiently reliable this ;; should be moved to vc-hooks.el (add-to-list 'vc-handled-backends 'GIT) -(add-to-list 'vc-directory-exclusion-list ".git" t) +(eval-after-load "vc" + '(add-to-list 'vc-directory-exclusion-list ".bzr" t)) ;;; BACKEND PROPERTIES