Make code clearer.

git-svn-id: svn://10.0.0.236/trunk@145784 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbaron%dbaron.org
2003-08-09 01:41:06 +00:00
parent 9685ddb070
commit 26188aebe5

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;