whitespace

This commit is contained in:
Dima Kogan 2011-02-06 15:36:51 -08:00
parent 8b8c8a28e4
commit 85b33dffc7

View File

@ -509,9 +509,7 @@ sub mainThread
plotStoredData($domain[0] - $options{xlen}, $domain[0]);
}
else
{
plotStoredData();
}
{ plotStoredData(); }
}
}
@ -571,14 +569,8 @@ sub plotStoredData
my @extraopts = map {$_->[0]{options}} @nonemptyCurves;
my $body = join(', ' , map({ '"-"' . $_} @extraopts) );
if($options{'3d'})
{
print PIPE "splot $body\n";
}
else
{
print PIPE "plot $body\n";
}
if($options{'3d'}) { print PIPE "splot $body\n"; }
else { print PIPE "plot $body\n"; }
foreach my $buf (@nonemptyCurves)
{