Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756595AbcKCJHe (ORCPT ); Thu, 3 Nov 2016 05:07:34 -0400 Received: from lb2-smtp-cloud3.xs4all.net ([194.109.24.26]:50661 "EHLO lb2-smtp-cloud3.xs4all.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756400AbcKCJHc (ORCPT ); Thu, 3 Nov 2016 05:07:32 -0400 Message-ID: <1478164043.1911.6.camel@tiscali.nl> Subject: Re: [RFC PATCH] get_maintainer: Look for arbitrary letter prefixes in sections From: Paul Bolle To: Joe Perches , Jani Nikula , linux-kernel Cc: intel-gfx@lists.freedesktop.org, dri-devel@lists.freedesktop.org, daniel@ffwll.ch, airlied@gmail.com, akpm@linux-foundation.org Date: Thu, 03 Nov 2016 10:07:23 +0100 In-Reply-To: <1477332323.1984.8.camel@perches.com> References: <1476966135-26943-1-git-send-email-jani.nikula@intel.com> <1477332323.1984.8.camel@perches.com> Content-Type: text/plain; charset="UTF-8" X-Mailer: Evolution 3.20.5 (3.20.5-1.fc24) Mime-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1235 Lines: 37 On Mon, 2016-10-24 at 11:05 -0700, Joe Perches wrote: > Jani Nikula proposes patches to add a few new letter prefixes > for "B:" bug reporting and "C:" maintainer chatting to the > various sections of MAINTAINERS. > > Add a generic mechanism to get_maintainer.pl to find sections that > have any combination of "[A-Z]" letter prefix types in a section. > > Signed-off-by: Joe Perches This patch made it into linux-next (ie, next-20161028). > --- a/scripts/get_maintainer.pl > +++ b/scripts/get_maintainer.pl > @@ -271,7 +273,8 @@ $output_multiline = 0 if ($output_separator ne ", "); >  $output_rolestats = 1 if ($interactive); >  $output_roles = 1 if ($output_rolestats); >   > -if ($sections) { > +if ($sections || $letters ne "") { > +    $sections = 1; This triggers:     Unrecognized character \xA0; marked by <-- HERE after <-- HERE near column 1 at ./scripts/get_maintainer.pl line 277. Git blame shows:     git blame -L 277,+1 ./scripts/get_maintainer.pl b67071653d3fc (Joe Perches 2016-10-28 13:22:01 +1100 277) $sections = 1; (A0 seems to be the no break space. That character was inserted more often further down the patch.) Anybody else seeing this? Paul Bolle