]> git.eshelyaron.com Git - emacs.git/commitdiff
(grep-find-ignored-directories): Add
authorThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 30 Aug 2007 09:33:49 +0000 (09:33 +0000)
committerThien-Thi Nguyen <ttn@gnuvola.org>
Thu, 30 Aug 2007 09:33:49 +0000 (09:33 +0000)
monotone _MTN bookkeeping directory in workspaces.  Add
RCS control directory.  List items in alphabetical order.

lisp/ChangeLog
lisp/progmodes/grep.el

index d493241daaf80dd14dbd4264045fcd4dd601c484..4c923e43a4d147c4ec23f2930e8d4bb1cef7187b 100644 (file)
@@ -1,3 +1,9 @@
+2007-08-30  Jari Aalto  <jari.aalto@cante.net>  (tiny change)
+
+       * progmodes/grep.el (grep-find-ignored-directories): Add
+       monotone _MTN bookkeeping directory in workspaces.  Add
+       RCS control directory.  List items in alphabetical order.
+
 2007-08-29  Dan Nicolaescu  <dann@ics.uci.edu>
 
        * vc-hg.el (vc-hg-extra-menu-map): New variable.
index 91518641938b65a1aa54c31dfb2ee71b9b8c7d9e..ff76907ed9a5f577bf1eb1b01451d3d854f02461 100644 (file)
@@ -157,8 +157,16 @@ The following place holders should be present in the string:
   :type 'alist
   :group 'grep)
 
-(defcustom grep-find-ignored-directories '("CVS" ".svn" "{arch}" ".hg" "_darcs"
-                                          ".git" ".bzr")
+(defcustom grep-find-ignored-directories
+  '(".bzr"
+    ".git"
+    ".hg"
+    ".svn"
+    "CVS"
+    "RCS"
+    "_MTN"
+    "_darcs"
+    "{arch}")
   "*List of names of sub-directories which `rgrep' shall not recurse into."
   :type '(repeat string)
   :group 'grep)