mirror of
https://github.com/curl/curl.git
synced 2026-08-25 08:53:36 +03:00
tidy-up: add spaces around equal operators where missing
Found via regex search: `=[^~>= ]` Closes #21975
This commit is contained in:
parent
2a606c68fa
commit
e35ba09f47
56 changed files with 593 additions and 596 deletions
|
|
@ -184,14 +184,14 @@ while(<CONFIG>) {
|
|||
if(/^---:([^:]*):(.*)/) {
|
||||
# whitelist file + word
|
||||
my $word = lc($2);
|
||||
$wl{"$1:$word"}=1;
|
||||
$wl{"$1:$word"} = 1;
|
||||
}
|
||||
elsif($_ =~ /^---(.+)/) {
|
||||
# whitelist word
|
||||
push @whitelist, $1;
|
||||
}
|
||||
elsif($_ =~ /^(.*)([:=])(.*)/) {
|
||||
my ($bad, $sep, $better)=($1, $2, $3);
|
||||
my ($bad, $sep, $better) = ($1, $2, $3);
|
||||
if($sep eq "=") {
|
||||
$alt{$bad} = $better;
|
||||
push @exact, $bad;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue