diff options
| author | Dan Nicolaescu | 2007-03-11 17:44:40 +0000 |
|---|---|---|
| committer | Dan Nicolaescu | 2007-03-11 17:44:40 +0000 |
| commit | 3dd34132f8404248a99da4b5de05960e823596f2 (patch) | |
| tree | 818b5f633d5ee7b3e48783ccb35a4e6d4e0f5975 | |
| parent | 593b4fa884f5be1124f95adba8c1e12c2a7930b9 (diff) | |
| download | emacs-3dd34132f8404248a99da4b5de05960e823596f2.tar.gz emacs-3dd34132f8404248a99da4b5de05960e823596f2.zip | |
(grep-find-ignored-directories): Add .git and
.bzr to list.
| -rw-r--r-- | lisp/ChangeLog | 5 | ||||
| -rw-r--r-- | lisp/progmodes/grep.el | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5a3d490756b..af18cbdf9ca 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2007-03-11 Dan Nicolaescu <dann@ics.uci.edu> | ||
| 2 | |||
| 3 | * progmodes/grep.el (grep-find-ignored-directories): Add .git and | ||
| 4 | .bzr to list. | ||
| 5 | |||
| 1 | 2007-03-11 Andreas Schwab <schwab@suse.de> | 6 | 2007-03-11 Andreas Schwab <schwab@suse.de> |
| 2 | 7 | ||
| 3 | * diff-mode.el (diff-apply-hunk): Use proper format string for | 8 | * 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: | |||
| 157 | :type 'alist | 157 | :type 'alist |
| 158 | :group 'grep) | 158 | :group 'grep) |
| 159 | 159 | ||
| 160 | (defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs") | 160 | (defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs" |
| 161 | ".git" ".bzr") | ||
| 161 | "*List of names of sub-directories which `rgrep' shall not recurse into." | 162 | "*List of names of sub-directories which `rgrep' shall not recurse into." |
| 162 | :type '(repeat string) | 163 | :type '(repeat string) |
| 163 | :group 'grep) | 164 | :group 'grep) |