mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
Make syntax check notice assignments w/o surrounding spaces.
This commit is contained in:
parent
721949059b
commit
a1cbe4b5a9
@ -144,6 +144,14 @@ foreach my $file (@ARGV) {
|
||||
$ret = 1;
|
||||
last;
|
||||
}
|
||||
|
||||
# Require spaces around assignment '=' and compounds
|
||||
while ($data =~ /[^!<>&|\-+*\/%\^'= ]=[^=]/ ||
|
||||
$data =~ /[^!<>&|\-+*\/%\^'=]=[^= \\\n]/) {
|
||||
print "$file:$.: $line";
|
||||
$ret = 1;
|
||||
last;
|
||||
}
|
||||
}
|
||||
close FILE;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user