From: Dan Nicolaescu Date: Mon, 23 Jul 2007 02:06:18 +0000 (+0000) Subject: (vc-directory-exclusion-list): Use eval-after-load. X-Git-Tag: emacs-pretest-23.0.90~11777 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=faa98100700f2682a2e89d170d49b5a8c609313b;p=emacs.git (vc-directory-exclusion-list): Use eval-after-load. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 2956492338d..6937352fc51 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/vc-git.el b/lisp/vc-git.el index d1858d8ff25..be46fe04ab7 100644 --- a/lisp/vc-git.el +++ b/lisp/vc-git.el @@ -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