mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 03:36:19 +00:00
checkpatch: comment detection: ignore macro continuation when detecting associated comments
When looking for an associated comment they may be suffixed by a macro continuation. Ignore this. 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
d3ddcf471e
commit
beae633249
1 changed files with 1 additions and 1 deletions
|
@ -631,7 +631,7 @@ sub ctx_locate_comment {
|
||||||
my ($first_line, $end_line) = @_;
|
my ($first_line, $end_line) = @_;
|
||||||
|
|
||||||
# Catch a comment on the end of the line itself.
|
# Catch a comment on the end of the line itself.
|
||||||
my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*$@);
|
my ($current_comment) = ($rawlines[$end_line - 1] =~ m@.*(/\*.*\*/)\s*(?:\\\s*)?$@);
|
||||||
return $current_comment if (defined $current_comment);
|
return $current_comment if (defined $current_comment);
|
||||||
|
|
||||||
# Look through the context and try and figure out if there is a
|
# Look through the context and try and figure out if there is a
|
||||||
|
|
Loading…
Reference in a new issue