From faa98100700f2682a2e89d170d49b5a8c609313b Mon Sep 17 00:00:00 2001 From: Dan Nicolaescu Date: Mon, 23 Jul 2007 02:06:18 +0000 Subject: [PATCH] (vc-directory-exclusion-list): Use eval-after-load. --- lisp/ChangeLog | 1 + lisp/vc-git.el | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- 2.39.5