提交 906fb135 编写于 作者: P Paolo Bonzini

checkpatch: tweak the files in which TABs are checked

Include Python and shell scripts, and make an exception for Perl
scripts we imported from Linux or elsewhere.
Acked-by: NCornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: NPaolo Bonzini <pbonzini@redhat.com>
上级 3fdd0ee3
...@@ -1334,7 +1334,7 @@ sub process { ...@@ -1334,7 +1334,7 @@ sub process {
} }
# check we are in a valid source file if not then ignore this hunk # check we are in a valid source file if not then ignore this hunk
next if ($realfile !~ /\.(h|c|cpp|s|S|pl|sh)$/); next if ($realfile !~ /\.(h|c|cpp|s|S|pl|py|sh)$/);
#80 column limit #80 column limit
if ($line =~ /^\+/ && if ($line =~ /^\+/ &&
...@@ -1354,10 +1354,11 @@ sub process { ...@@ -1354,10 +1354,11 @@ sub process {
WARN("adding a line without newline at end of file\n" . $herecurr); WARN("adding a line without newline at end of file\n" . $herecurr);
} }
# check we are in a valid source file C or perl if not then ignore this hunk # tabs are only allowed in assembly source code, and in
next if ($realfile !~ /\.(h|c|cpp|pl)$/); # some scripts we imported from other projects.
next if ($realfile =~ /\.(s|S)$/);
next if ($realfile =~ /(checkpatch|get_maintainer|texi2pod)\.pl$/);
# in QEMU, no tabs are allowed
if ($rawline =~ /^\+.*\t/) { if ($rawline =~ /^\+.*\t/) {
my $herevet = "$here\n" . cat_vet($rawline) . "\n"; my $herevet = "$here\n" . cat_vet($rawline) . "\n";
ERROR("code indent should never use tabs\n" . $herevet); ERROR("code indent should never use tabs\n" . $herevet);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册