Mercurial > emacs
changeset 76455:dac34bd10d88
(grep-find-ignored-directories): Add .git and
.bzr to list.
author | Dan Nicolaescu <dann@ics.uci.edu> |
---|---|
date | Sun, 11 Mar 2007 17:44:40 +0000 |
parents | 2e651c268ac1 |
children | 720d443bce01 |
files | lisp/ChangeLog lisp/progmodes/grep.el |
diffstat | 2 files changed, 7 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- 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 <dann@ics.uci.edu> + + * progmodes/grep.el (grep-find-ignored-directories): Add .git and + .bzr to list. + 2007-03-11 Andreas Schwab <schwab@suse.de> * diff-mode.el (diff-apply-hunk): Use proper format string for
--- 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)