Make code clearer.

This commit is contained in:
dbaron%dbaron.org 2003-08-09 01:41:06 +00:00
parent 1388d81344
commit 597cc6b9c4

View File

@ -75,8 +75,8 @@ while (<>) {
print {$out} "$address\n";
chomp(my $symbol = <$in>);
chomp(my $fileandline = <$in>);
($symbol eq "??") && { $symbol = $badsymbol };
($fileandline eq "??:0") && { $fileandline = $file };
if ($symbol eq "??") { $symbol = $badsymbol; }
if ($fileandline eq "??:0") { $fileandline = $file; }
print "$before$symbol ($fileandline)$after\n";
} else {
print $line;