aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/ChangeLog6
-rw-r--r--lisp/progmodes/grep.el12
2 files changed, 16 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index d493241daaf..4c923e43a4d 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,9 @@
12007-08-30 Jari Aalto <jari.aalto@cante.net> (tiny change)
2
3 * progmodes/grep.el (grep-find-ignored-directories): Add
4 monotone _MTN bookkeeping directory in workspaces. Add
5 RCS control directory. List items in alphabetical order.
6
12007-08-29 Dan Nicolaescu <dann@ics.uci.edu> 72007-08-29 Dan Nicolaescu <dann@ics.uci.edu>
2 8
3 * vc-hg.el (vc-hg-extra-menu-map): New variable. 9 * vc-hg.el (vc-hg-extra-menu-map): New variable.
diff --git a/lisp/progmodes/grep.el b/lisp/progmodes/grep.el
index 91518641938..ff76907ed9a 100644
--- a/lisp/progmodes/grep.el
+++ b/lisp/progmodes/grep.el
@@ -157,8 +157,16 @@ 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
161 ".git" ".bzr") 161 '(".bzr"
162 ".git"
163 ".hg"
164 ".svn"
165 "CVS"
166 "RCS"
167 "_MTN"
168 "_darcs"
169 "{arch}")
162 "*List of names of sub-directories which `rgrep' shall not recurse into." 170 "*List of names of sub-directories which `rgrep' shall not recurse into."
163 :type '(repeat string) 171 :type '(repeat string)
164 :group 'grep) 172 :group 'grep)