diff options
Diffstat (limited to 'scripts/checkpatch.pl')
-rwxr-xr-x | scripts/checkpatch.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 303c3634198b..586f9a4f0ad0 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl | |||
@@ -1977,8 +1977,8 @@ sub process { | |||
1977 | # Extract the remainder of the define (if any) and | 1977 | # Extract the remainder of the define (if any) and |
1978 | # rip off surrounding spaces, and trailing \'s. | 1978 | # rip off surrounding spaces, and trailing \'s. |
1979 | $rest = ''; | 1979 | $rest = ''; |
1980 | while ($off != 0 || ($cnt > 0 && $rest =~ /(?:^|\\)\s*$/)) { | 1980 | while ($off != 0 || ($cnt > 0 && $rest =~ /\\\s*$/)) { |
1981 | #print "ADDING $off <" . substr($lines[$ln - 1], $off) . ">\n"; | 1981 | #print "ADDING cnt<$cnt> $off <" . substr($lines[$ln - 1], $off) . "> rest<$rest>\n"; |
1982 | if ($off != 0 || $lines[$ln - 1] !~ /^-/) { | 1982 | if ($off != 0 || $lines[$ln - 1] !~ /^-/) { |
1983 | $rest .= substr($lines[$ln - 1], $off) . "\n"; | 1983 | $rest .= substr($lines[$ln - 1], $off) . "\n"; |
1984 | $cnt--; | 1984 | $cnt--; |