mirror of
https://github.com/curl/curl.git
synced 2026-07-28 21:53:06 +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
|
|
@ -198,13 +198,13 @@ while(<N>) {
|
|||
$file = $1;
|
||||
}
|
||||
if($l =~ /^([0-9a-f]+) T _?(.*)/) {
|
||||
my ($name)=($2);
|
||||
my ($name) = ($2);
|
||||
#print "Define $name in $file\n";
|
||||
$file =~ s/^libcurl_la-//;
|
||||
$exist{$name} = $file;
|
||||
}
|
||||
elsif($l =~ /^ U _?(.*)/) {
|
||||
my ($name)=($1);
|
||||
my ($name) = ($1);
|
||||
#print "Uses $name in $file\n";
|
||||
$uses{$name} .= "$file, ";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue