From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Subject: Re: [PATCH] MAINTAINERS: add keyword "tegra" to Tegra section Date: Fri, 08 Feb 2013 20:15:56 -0700 Message-ID: <5115BF6C.6050509@wwwdotorg.org> 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> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1360371906.13487.9.camel@joe-AO722> Sender: linux-tegra-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Joe Perches Cc: arm-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-kernel-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, Stephen Warren List-Id: linux-tegra@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?