diff options
author | Andy Whitcroft <apw@canonical.com> | 2009-01-06 14:41:27 -0800 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-01-06 15:59:17 -0800 |
commit | 8b1b33786b06a222cf3430b1bf942a3681532104 (patch) | |
tree | dcacb222ddc7320f67a30c93440a09b5bf2a0c76 /scripts | |
parent | 8054576dca7e76dd1f58c525af3309cfc9c74454 (diff) | |
download | linux-3.10-8b1b33786b06a222cf3430b1bf942a3681532104.tar.gz linux-3.10-8b1b33786b06a222cf3430b1bf942a3681532104.tar.bz2 linux-3.10-8b1b33786b06a222cf3430b1bf942a3681532104.zip |
checkpatch: fix continuation detection when handling spacing on operators
We are miscategorising a continuation fragment following an operator
which may lead to us thinking that there is a space after it when there is
not. Fix this up.
Signed-off-by: Andy Whitcroft <apw@canonical.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index d80b55a6f89..67b0c9faa32 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1793,7 +1793,7 @@ sub process { $c = 'C' if ($elements[$n + 2] =~ /^$;/); $c = 'B' if ($elements[$n + 2] =~ /^(\)|\]|;)/); $c = 'O' if ($elements[$n + 2] eq ''); - $c = 'E' if ($elements[$n + 2] =~ /\s*\\$/); + $c = 'E' if ($elements[$n + 2] =~ /^\s*\\$/); } else { $c = 'E'; } |