checkpatch: widen implied comment detection to allow multiple stars
Some people use double star '**' as a comment continuation, and start comments with complete lines of stars. Widen the implied comment detection to pick these up. Signed-off-by: Andy Whitcroft <apw@shadowen.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
parent
721c1cb60e
commit
83242e0c23
1 changed files with 1 additions and 1 deletions
|
@ -1109,7 +1109,7 @@ sub process {
|
||||||
# is the start of a diff block and this line starts
|
# is the start of a diff block and this line starts
|
||||||
# ' *' then it is very likely a comment.
|
# ' *' then it is very likely a comment.
|
||||||
if (!defined $edge &&
|
if (!defined $edge &&
|
||||||
$rawlines[$linenr] =~ m@^.\s* \*(?:\s|$)@)
|
$rawlines[$linenr] =~ m@^.\s*(?:\*\*+| \*)(?:\s|$)@)
|
||||||
{
|
{
|
||||||
$in_comment = 1;
|
$in_comment = 1;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue