aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Nicolaescu2007-07-23 02:06:18 +0000
committerDan Nicolaescu2007-07-23 02:06:18 +0000
commitfaa98100700f2682a2e89d170d49b5a8c609313b (patch)
treed0841475b823648165eb12b8586593e14c79a907
parente43883beed29bcc4952237324d90fbcf256609bf (diff)
downloademacs-faa98100700f2682a2e89d170d49b5a8c609313b.tar.gz
emacs-faa98100700f2682a2e89d170d49b5a8c609313b.zip
(vc-directory-exclusion-list): Use eval-after-load.
-rw-r--r--lisp/ChangeLog1
-rw-r--r--lisp/vc-git.el3
2 files changed, 3 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 2956492338d..6937352fc51 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -7,6 +7,7 @@
72007-07-23 Dan Nicolaescu <dann@ics.uci.edu> 72007-07-23 Dan Nicolaescu <dann@ics.uci.edu>
8 8
9 * vc-git.el: Update status. 9 * vc-git.el: Update status.
10 (vc-directory-exclusion-list): Use eval-after-load.
10 11
112007-07-22 Nick Roberts <nickrob@snap.net.nz> 122007-07-22 Nick Roberts <nickrob@snap.net.nz>
12 13
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 @@
114;; XXX when this backend is considered sufficiently reliable this 114;; XXX when this backend is considered sufficiently reliable this
115;; should be moved to vc-hooks.el 115;; should be moved to vc-hooks.el
116(add-to-list 'vc-handled-backends 'GIT) 116(add-to-list 'vc-handled-backends 'GIT)
117(add-to-list 'vc-directory-exclusion-list ".git" t) 117(eval-after-load "vc"
118 '(add-to-list 'vc-directory-exclusion-list ".bzr" t))
118 119
119;;; BACKEND PROPERTIES 120;;; BACKEND PROPERTIES
120 121