From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Deniz Dogan Newsgroups: gmane.emacs.devel Subject: Re: [PATCH] vc-git: Do not show `.git/*' files with vc-dir Date: Wed, 30 Jun 2010 14:57:29 +0200 Message-ID: References: NNTP-Posting-Host: lo.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: dough.gmane.org 1277902697 3759 80.91.229.12 (30 Jun 2010 12:58:17 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 30 Jun 2010 12:58:17 +0000 (UTC) Cc: emacs-devel@gnu.org To: Eric@cybersprocket.com Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Jun 30 14:58:15 2010 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([199.232.76.165]) by lo.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1OTwrh-00084U-Sn for ged-emacs-devel@m.gmane.org; Wed, 30 Jun 2010 14:58:10 +0200 Original-Received: from localhost ([127.0.0.1]:53371 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTwrh-0006cd-Ek for ged-emacs-devel@m.gmane.org; Wed, 30 Jun 2010 08:58:09 -0400 Original-Received: from [140.186.70.92] (port=54550 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTwrb-0006cI-Bi for emacs-devel@gnu.org; Wed, 30 Jun 2010 08:58:04 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTwrZ-0006vu-Gm for emacs-devel@gnu.org; Wed, 30 Jun 2010 08:58:03 -0400 Original-Received: from mail-fx0-f41.google.com ([209.85.161.41]:50685) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTwrZ-0006vL-04 for emacs-devel@gnu.org; Wed, 30 Jun 2010 08:58:01 -0400 Original-Received: by fxm17 with SMTP id 17so491106fxm.0 for ; Wed, 30 Jun 2010 05:57:59 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:mime-version:received:in-reply-to :references:from:date:message-id:subject:to:cc:content-type :content-transfer-encoding; bh=2o5SxGFkiVcHrUwrKnxD8B54d1VnYDu4KOjMcYIhM78=; b=KPFj4psa7Ka/m0tK2jbu06+FoOUtOyYCbDUnNLpLd0B79f9dKkhLaVibEWODYC9rl6 96V39XsdDBo/RqK6r3S+1KI6X7QLZI9glAcOh0PhLMBfaFMAM20EP3XKy9ApIjm9GmjG 3d2Sorb3uQqWj8f2vm/cSRtTt5nf/FkyMR+Bo= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc:content-type:content-transfer-encoding; b=mFspI6vZp+HvN0VnJ3fWnBbFDCktiq+rAGAMGchBMgZQrv1zN5FUNFHS8pH9AFR8Yw dTpOX6Lt+J1flCQFgdSKVPyrOjABFOOEYlNobG7JsV4br0/iCvwBHn5JQFKBgnlJm0Dq fGNf3w3wMilJq1vrB4ju0E4vm6EfQaWY9xmH0= Original-Received: by 10.216.184.136 with SMTP id s8mr11284497wem.4.1277902679222; Wed, 30 Jun 2010 05:57:59 -0700 (PDT) Original-Received: by 10.216.183.75 with HTTP; Wed, 30 Jun 2010 05:57:29 -0700 (PDT) In-Reply-To: X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) 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:126531 Archived-At: 2010/6/30 Eric James Michael Ritz : > + =A0(cond ((string-match ".git" file) Wouldn't "\\`\\.git\\'" be more appropriate? ".git" would match anything which contains "git" preceded by at least one character. --=20 Deniz Dogan