[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 2/5] checkpatch: check for CVS keywords on all sourc
From: |
Paolo Bonzini |
Subject: |
[Qemu-devel] [PATCH 2/5] checkpatch: check for CVS keywords on all sources |
Date: |
Wed, 10 Aug 2016 10:22:47 +0200 |
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 <address@hidden>
---
scripts/checkpatch.pl | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/scripts/checkpatch.pl b/scripts/checkpatch.pl
index 082c4ce..f6928db 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);
--
1.8.3.1
- [Qemu-devel] [PATCH v2 0/5] checkpatch tweaks, Paolo Bonzini, 2016/08/10
- [Qemu-devel] [PATCH 2/5] checkpatch: check for CVS keywords on all sources,
Paolo Bonzini <=
- [Qemu-devel] [PATCH 1/5] checkpatch: tweak the files in which TABs are checked, Paolo Bonzini, 2016/08/10
- [Qemu-devel] [PATCH 3/5] CODING_STYLE, checkpatch: update line length rules, Paolo Bonzini, 2016/08/10
- [Qemu-devel] [PATCH 5/5] checkpatch: default to success if only warnings, Paolo Bonzini, 2016/08/10
- [Qemu-devel] [PATCH 4/5] checkpatch: bump most warnings to errors, Paolo Bonzini, 2016/08/10