mirror of
https://github.com/adulau/aha.git
synced 2024-12-28 19:56:18 +00:00
checkpatch: case/default checks should only check changed lines
We should only be checking changes lines for the trailing statement check on case/default statements. 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
dea79cd3df
commit
a1080bf808
1 changed files with 9 additions and 8 deletions
|
@ -1363,14 +1363,6 @@ sub process {
|
||||||
ERROR("switch and case should be at the same indent\n$hereline$err");
|
ERROR("switch and case should be at the same indent\n$hereline$err");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
|
|
||||||
$line !~ /\G(?:
|
|
||||||
(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
|
|
||||||
\s*return\s+
|
|
||||||
)/xg)
|
|
||||||
{
|
|
||||||
ERROR("trailing statements should be on next line\n" . $herecurr);
|
|
||||||
}
|
|
||||||
|
|
||||||
# if/while/etc brace do not go on next line, unless defining a do while loop,
|
# if/while/etc brace do not go on next line, unless defining a do while loop,
|
||||||
# or if that brace on the next line is for something else
|
# or if that brace on the next line is for something else
|
||||||
|
@ -1986,6 +1978,15 @@ sub process {
|
||||||
ERROR("trailing statements should be on next line\n" . $herecurr);
|
ERROR("trailing statements should be on next line\n" . $herecurr);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
# case and default should not have general statements after them
|
||||||
|
if ($line =~ /^.\s*(?:case\s*.*|default\s*):/g &&
|
||||||
|
$line !~ /\G(?:
|
||||||
|
(?:\s*{)?(?:\s*$;*)(?:\s*\\)?\s*$|
|
||||||
|
\s*return\s+
|
||||||
|
)/xg)
|
||||||
|
{
|
||||||
|
ERROR("trailing statements should be on next line\n" . $herecurr);
|
||||||
|
}
|
||||||
|
|
||||||
# Check for }<nl>else {, these must be at the same
|
# Check for }<nl>else {, these must be at the same
|
||||||
# indent level to be relevant to each other.
|
# indent level to be relevant to each other.
|
||||||
|
|
Loading…
Reference in a new issue