Prev: Fix unnecessary spaces before newlines in logging messages
Next: bitops: compile time optimization for hweight_long(CONSTANT)
From: Joe Perches on 1 Feb 2010 15:40 Signed-off-by: Joe Perches <joe(a)perches.com> --- diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 3257d3d..4a4d55c 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1383,6 +1383,11 @@ sub process { WARN("line over 80 characters\n" . $herecurr); } +# check for spaces before a quoted newline + if ($rawline =~ /^.*\".*\s\\n/) { + WARN("unnecessary whitespace before a quoted newline\n" . $herecurr); + } + # check for adding lines without a newline. if ($line =~ /^\+/ && defined $lines[$linenr] && $lines[$linenr] =~ /^\\ No newline at end of file/) { WARN("adding a line without newline at end of file\n" . $herecurr); -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo(a)vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/ |