From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Stefan Monnier Newsgroups: gmane.emacs.devel Subject: Re: [mange@freemail.hu: grep-tree doesn't shell-quote-argument] Date: Fri, 21 Apr 2006 16:40:25 -0400 Message-ID: References: <87vet39ea3.fsf@freemail.hu> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: sea.gmane.org 1145652070 6942 80.91.229.2 (21 Apr 2006 20:41:10 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Fri, 21 Apr 2006 20:41:10 +0000 (UTC) Cc: emacs-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Fri Apr 21 22:41:06 2006 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by ciao.gmane.org with esmtp (Exim 4.43) id 1FX2Qp-0005DY-C1 for ged-emacs-devel@m.gmane.org; Fri, 21 Apr 2006 22:40:47 +0200 Original-Received: from localhost ([127.0.0.1] helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FX2Qo-0007XF-Qb for ged-emacs-devel@m.gmane.org; Fri, 21 Apr 2006 16:40:46 -0400 Original-Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1FX2Qb-0007Vc-HO for emacs-devel@gnu.org; Fri, 21 Apr 2006 16:40:33 -0400 Original-Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1FX2Qa-0007Ul-0G for emacs-devel@gnu.org; Fri, 21 Apr 2006 16:40:33 -0400 Original-Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1FX2QZ-0007Uh-Px for emacs-devel@gnu.org; Fri, 21 Apr 2006 16:40:31 -0400 Original-Received: from [132.204.24.67] (helo=mercure.iro.umontreal.ca) by monty-python.gnu.org with esmtp (Exim 4.52) id 1FX2SC-0002At-UJ for emacs-devel@gnu.org; Fri, 21 Apr 2006 16:42:13 -0400 Original-Received: from hidalgo.iro.umontreal.ca (hidalgo.iro.umontreal.ca [132.204.27.50]) by mercure.iro.umontreal.ca (Postfix) with ESMTP id B5BD02CE9BE; Fri, 21 Apr 2006 16:40:30 -0400 (EDT) Original-Received: from asado.iro.umontreal.ca (asado.iro.umontreal.ca [132.204.24.84]) by hidalgo.iro.umontreal.ca (Postfix) with ESMTP id 58F68445C; Fri, 21 Apr 2006 16:40:25 -0400 (EDT) Original-Received: by asado.iro.umontreal.ca (Postfix, from userid 20848) id 43C12715AB; Fri, 21 Apr 2006 16:40:25 -0400 (EDT) Original-To: storm@cua.dk (Kim F. Storm) In-Reply-To: (Kim F. Storm's message of "Fri, 21 Apr 2006 22:04:54 +0200") User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (gnu/linux) X-DIRO-MailScanner-Information: Please contact the ISP for more information X-DIRO-MailScanner: Found to be clean X-DIRO-MailScanner-SpamCheck: n'est pas un polluriel, SpamAssassin (score=-2.82, requis 5, autolearn=not spam, ALL_TRUSTED -2.82) X-DIRO-MailScanner-From: monnier@iro.umontreal.ca X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:53208 Archived-At: >>>> ! (and grep-find-ignore-CVS-directories "-path '*/CVS' -prune -o ") >> >>> I think this should ignore ".svn", "{arch}", and "_darcs" as well. >> >> And .hg >> .. and probably a bunch more. > The problem with CVS is that while editing a file foo.c, there may be > related file named CVS/Base/foo.c. We certainly don't want grep-find to > look into that file. That's one problem. Another is that those admin-dirs can be large (with many files), so the time to traverse them can be non-negligible. > Does these other systems have files named like the original files in > their respective sub-directories? IIRC, .svn may have similarly named files, as does .hg (.hg's files would be things like "foo.c.d" and "foo.c.i" rather than "foo.c"), while {arch} typically contains a large number of small files and may also contain "foo.c" depending on how you configured tla. Stefan