projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6ab3a97
)
checkpatch: add spell checking of email subject line
author
Joe Perches
<
[email protected]
>
Thu, 16 Apr 2015 19:44:08 +0000
(12:44 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 17 Apr 2015 13:03:56 +0000
(09:03 -0400)
Only commit log and patch additions are checked for typos and spelling
errors currently. Add a check of the email subject line too.
Signed-off-by: Joe Perches <
[email protected]
>
Suggested-by: Jani Nikula <
[email protected]
>
Tested-by: Jani Nikula <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
scripts/checkpatch.pl
patch
|
blob
|
history
diff --git
a/scripts/checkpatch.pl
b/scripts/checkpatch.pl
index 421bbb47844f2285acdef392053ffd403328f312..c061a63afa20155fb9f3dc29582bd60dd3c1e50f 100755
(executable)
--- a/
scripts/checkpatch.pl
+++ b/
scripts/checkpatch.pl
@@
-2303,7
+2303,8
@@
sub process {
}
# Check for various typo / spelling mistakes
- if (defined($misspellings) && ($in_commit_log || $line =~ /^\+/)) {
+ if (defined($misspellings) &&
+ ($in_commit_log || $line =~ /^(?:\+|Subject:)/i)) {
while ($rawline =~ /(?:^|[^a-z@])($misspellings)(?:$|[^a-z@])/gi) {
my $typo = $1;
my $typo_fix = $spelling_fix{lc($typo)};