mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 17:34:18 +03: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;
|
$ret = 1;
|
||||||
last;
|
last;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# Require spaces around assignment '=' and compounds
|
||||||
|
while ($data =~ /[^!<>&|\-+*\/%\^'= ]=[^=]/ ||
|
||||||
|
$data =~ /[^!<>&|\-+*\/%\^'=]=[^= \\\n]/) {
|
||||||
|
print "$file:$.: $line";
|
||||||
|
$ret = 1;
|
||||||
|
last;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
close FILE;
|
close FILE;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user