]> git.eshelyaron.com Git - emacs.git/commitdiff
(grep-find-ignored-directories): Add .git and
authorDan Nicolaescu <dann@ics.uci.edu>
Sun, 11 Mar 2007 17:44:40 +0000 (17:44 +0000)
committerDan Nicolaescu <dann@ics.uci.edu>
Sun, 11 Mar 2007 17:44:40 +0000 (17:44 +0000)
.bzr to list.

lisp/ChangeLog
lisp/progmodes/grep.el

index 5a3d490756b08edac1e8ef55418ff619d97ef126..af18cbdf9ca63b04382f1ab375a5814fd12ef4f0 100644 (file)
@@ -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
index a0dd83fb974835e2504037e092ab748a2c92be08..fe2bbdec14eeec307fdce4703aa1c0875b5e260e 100644 (file)
@@ -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)