diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-08-10 10:05:03 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-08-10 11:10:03 +0200 |
commit | 93eb8e31f38b3eb612e522c62e8932d7fd576ff9 (patch) | |
tree | 8ad2512bae1db834d49807367ea5d296698e3e9f /scripts | |
parent | 906fb135e4b875465c424cb9b2b47d90265f7897 (diff) |
checkpatch: check for CVS keywords on all sources
These should apply to all files, not just C/C++. Tweak the regular
expression to check for whole words, to avoid false positives on Perl
variables starting with "Id".
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/checkpatch.pl | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl index 082c4cecc9..fea576d1b4 100755 --- a/scripts/checkpatch.pl +++ b/scripts/checkpatch.pl @@ -1354,6 +1354,11 @@ sub process { WARN("adding a line without newline at end of file\n" . $herecurr); } +# check for RCS/CVS revision markers + if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|\b)/) { + WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr); + } + # tabs are only allowed in assembly source code, and in # some scripts we imported from other projects. next if ($realfile =~ /\.(s|S)$/); @@ -1368,11 +1373,6 @@ sub process { # check we are in a valid C source file if not then ignore this hunk next if ($realfile !~ /\.(h|c|cpp)$/); -# check for RCS/CVS revision markers - if ($rawline =~ /^\+.*\$(Revision|Log|Id)(?:\$|)/) { - WARN("CVS style keyword markers, these will _not_ be updated\n". $herecurr); - } - # Check for potential 'bare' types my ($stat, $cond, $line_nr_next, $remain_next, $off_next, $realline_next); |