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:58:09 +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 1277902739 3867 80.91.229.12 (30 Jun 2010 12:58:59 GMT) X-Complaints-To: usenet@dough.gmane.org NNTP-Posting-Date: Wed, 30 Jun 2010 12:58:59 +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:57 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 1OTwsN-0008U2-PV for ged-emacs-devel@m.gmane.org; Wed, 30 Jun 2010 14:58:52 +0200 Original-Received: from localhost ([127.0.0.1]:53760 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTwsN-0006uT-55 for ged-emacs-devel@m.gmane.org; Wed, 30 Jun 2010 08:58:51 -0400 Original-Received: from [140.186.70.92] (port=54631 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OTwsE-0006sn-6x for emacs-devel@gnu.org; Wed, 30 Jun 2010 08:58:43 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OTwsD-00071C-0Y for emacs-devel@gnu.org; Wed, 30 Jun 2010 08:58:42 -0400 Original-Received: from mail-fx0-f41.google.com ([209.85.161.41]:34840) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OTwsC-000712-Ru for emacs-devel@gnu.org; Wed, 30 Jun 2010 08:58:40 -0400 Original-Received: by fxm17 with SMTP id 17so491744fxm.0 for ; Wed, 30 Jun 2010 05:58:39 -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=83djLVVTVKbXar3OZha63Gb2ym/OyXpb1mSVmgqMu/I=; b=SikAP7R6k415YxXjYPk7PLgsy6ixaQIZLHvZ4Lf2S/xw0nyBNEkf5qdMcTTpIQln91 cFghEljGxgwS6WPPEXuzsAJPrvRhxi8nJBai/8Lq406IDCKB9oYcGB9fTwsHA+IvaHSY QC4aiSeeSfhxEwI6T8V5yroc6/1teOdS0m63s= 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=fv+t13w6uJ+0hIJPShwEaLV6V9vBkGYr3uk3cfMQNl4nqsMbBB4ypI6fqN/bMkDIoc I/Q+RWtuy8L5XdhLOciPhAf+44jZpZmjymAs9I7QqbnJ0AtCmY5JA5ySVJF7BYXSspbd 1CuHkNn+Mix2JvpPbwm8nT0K4pRVY3QfcEGmg= Original-Received: by 10.216.188.141 with SMTP id a13mr7136517wen.43.1277902719510; Wed, 30 Jun 2010 05:58:39 -0700 (PDT) Original-Received: by 10.216.183.75 with HTTP; Wed, 30 Jun 2010 05:58:09 -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:126532 Archived-At: 2010/6/30 Deniz Dogan : > 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. > Or actually, (string=3D ".git" file), I suppose. :) --=20 Deniz Dogan