From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1760574Ab3BIDP7 (ORCPT ); Fri, 8 Feb 2013 22:15:59 -0500 Received: from avon.wwwdotorg.org ([70.85.31.133]:36329 "EHLO avon.wwwdotorg.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1760481Ab3BIDP5 (ORCPT ); Fri, 8 Feb 2013 22:15:57 -0500 Message-ID: <5115BF6C.6050509@wwwdotorg.org> Date: Fri, 08 Feb 2013 20:15:56 -0700 From: Stephen Warren User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/20130106 Thunderbird/17.0.2 MIME-Version: 1.0 To: Joe Perches CC: arm@kernel.org, linux-tegra@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, Stephen Warren Subject: Re: [PATCH] MAINTAINERS: add keyword "tegra" to Tegra section References: <1360353891-24210-1-git-send-email-swarren@wwwdotorg.org> <1360370419.13487.8.camel@joe-AO722> <51159C96.5080505@wwwdotorg.org> <1360371906.13487.9.camel@joe-AO722> In-Reply-To: <1360371906.13487.9.camel@joe-AO722> X-Enigmail-Version: 1.4.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 02/08/2013 06:05 PM, Joe Perches wrote: > On Fri, 2013-02-08 at 17:47 -0700, Stephen Warren wrote: >> On 02/08/2013 05:40 PM, Joe Perches wrote: >>> On Fri, 2013-02-08 at 13:04 -0700, Stephen Warren wrote: >>>> (?>> >>> This doesn't work well. It matches too many >>> words like integral. >> >> Hmmm. That's exactly what the (?> attempting to avoid. It works fine here. Is there some dependency on >> Perl version or something? My Perl version is v5.14.2. > > Integral matches > > I don't see any issue with using a leading \b Oh right, it's a capitalization issue; I only tested with "integral" not "Integral". The problem with \btegra is that it wouldn't match _tegra, which would be useful. Perhaps a custom almost-equivalent (?i)[^a-z]tegra would work?