[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH] Emacs CVS: Improve grep-find-ignored-directories
From: |
Jari Aalto |
Subject: |
[PATCH] Emacs CVS: Improve grep-find-ignored-directories |
Date: |
Tue, 28 Aug 2007 02:25:52 +0300 |
User-agent: |
Gnus/5.110006 (No Gnus v0.6) Emacs/21.3 (windows-nt) |
This bug report will be sent to the Free Software Foundation,
not to your local site managers!
Please write in English, because the Emacs maintainers do not have
translators to read other languages for them.
Here is patch against CVS as of 2007-08-28--0203 UTC+2
2007-08-28 Jari Aalto <jari.aalto@cante.net>
* progmodes/grep.el (grep-find-ignored-directories): Add
monotone _MTN bookkeeping directory in workspaces. Add
RCS control directory. List items in alphabetical order.
diff --git a/progmodes/grep.el b/progmodes/grep.el
index 9151864..57a1e74 100644
--- a/progmodes/grep.el
+++ b/progmodes/grep.el
@@ -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)
- [PATCH] Emacs CVS: Improve grep-find-ignored-directories,
Jari Aalto <=