From: Dan Nicolaescu Date: Sun, 11 Mar 2007 17:44:40 +0000 (+0000) Subject: (grep-find-ignored-directories): Add .git and X-Git-Tag: emacs-pretest-22.0.96~150 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=3dd34132f8404248a99da4b5de05960e823596f2;p=emacs.git (grep-find-ignored-directories): Add .git and .bzr to list. --- diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a3d490756b..af18cbdf9ca 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -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 --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el index a0dd83fb974..fe2bbdec14e 100644 --- a/lisp/progmodes/grep.el +++ b/lisp/progmodes/grep.el @@ -157,7 +157,8 @@ The following place holders should be present in the string: :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)