Re: [PATCH] checkpatch: allow single space before labels

From: Peter Zijlstra
Date: Sun Oct 17 2010 - 06:20:20 EST


On Sun, 2010-10-17 at 04:05 -0400, Mike Frysinger wrote:

NACK!

Use:

QUILT_DIFF_OPTS="-F ^[[:alpha:]\$_].*[^:]\$"


> Signed-off-by: Mike Frysinger <vapier@xxxxxxxxxx>
> ---
> scripts/checkpatch.pl | 2 +-
> 1 files changed, 1 insertions(+), 1 deletions(-)
>
> diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
> index 2039acd..1d06df7 100755
> --- a/scripts/checkpatch.pl
> +++ b/scripts/checkpatch.pl
> @@ -1459,7 +1459,7 @@ sub process {
> }
>
> # check for spaces at the beginning of a line.
> - if ($rawline =~ /^\+ / && $rawline !~ /\+ +\*/) {
> + if ($rawline =~ /^\+ / && $rawline !~ /\+ +\*/ && $rawline !~ /:$/) {
> my $herevet = "$here\n" . cat_vet($rawline) . "\n";
> WARN("please, no space for starting a line, \
> excluding comments\n" . $herevet);


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/