# HG changeset patch # User Dan Nicolaescu # Date 1173635080 0 # Node ID dac34bd10d88e7a8e8674d38f86f4602e968ef5e # Parent 2e651c268ac19744c55014a7d41852c6989e5b09 (grep-find-ignored-directories): Add .git and .bzr to list. diff -r 2e651c268ac1 -r dac34bd10d88 lisp/ChangeLog --- a/lisp/ChangeLog Sun Mar 11 10:45:00 2007 +0000 +++ b/lisp/ChangeLog Sun Mar 11 17:44:40 2007 +0000 @@ -1,3 +1,8 @@ +2007-03-11 Dan Nicolaescu + + * progmodes/grep.el (grep-find-ignored-directories): Add .git and + .bzr to list. + 2007-03-11 Andreas Schwab * diff-mode.el (diff-apply-hunk): Use proper format string for diff -r 2e651c268ac1 -r dac34bd10d88 lisp/progmodes/grep.el --- a/lisp/progmodes/grep.el Sun Mar 11 10:45:00 2007 +0000 +++ b/lisp/progmodes/grep.el Sun Mar 11 17:44:40 2007 +0000 @@ -157,7 +157,8 @@ :type 'alist :group 'grep) -(defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs") +(defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs" + ".git" ".bzr") "*List of names of sub-directories which `rgrep' shall not recurse into." :type '(repeat string) :group 'grep)