mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-05 22:11:12 +08:00
minor simplification
I delete the with option after I use it. This is defensive and clarifies the intent
This commit is contained in:
parent
5123ca73d3
commit
167e85d2a7
@ -146,6 +146,17 @@ sub interpretCommandline
|
|||||||
push @{$options{curvestyle}}, @{$options{style}};
|
push @{$options{curvestyle}}, @{$options{style}};
|
||||||
delete $options{style};
|
delete $options{style};
|
||||||
|
|
||||||
|
if( $options{curvestyleall} && $options{with} )
|
||||||
|
{
|
||||||
|
print STDERR "--curvestyleall and --with are mutually exclusive. Please just use one.\n";
|
||||||
|
exit -1;
|
||||||
|
}
|
||||||
|
if( $options{with} )
|
||||||
|
{
|
||||||
|
$options{curvestyleall} = "with $options{with}";
|
||||||
|
delete $options{with};
|
||||||
|
}
|
||||||
|
|
||||||
# --legend and --curvestyle options are conceptually hashes, but are parsed as
|
# --legend and --curvestyle options are conceptually hashes, but are parsed as
|
||||||
# arrays in order to preserve the ordering. I parse both of these into hashes
|
# arrays in order to preserve the ordering. I parse both of these into hashes
|
||||||
# because those are useful to have later. After this I can access individual
|
# because those are useful to have later. After this I can access individual
|
||||||
@ -227,17 +238,6 @@ sub interpretCommandline
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if( $options{curvestyleall} && $options{with} )
|
|
||||||
{
|
|
||||||
print STDERR "--curvestyleall and --with are mutually exclusive. Please just use one.\n";
|
|
||||||
exit -1;
|
|
||||||
}
|
|
||||||
if( $options{with} )
|
|
||||||
{
|
|
||||||
$options{curvestyleall} = "with $options{with}";
|
|
||||||
$options{with} = '';
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($options{colormap})
|
if ($options{colormap})
|
||||||
{
|
{
|
||||||
# colormap styles all curves with palette. Seems like there should be a way to do this with a
|
# colormap styles all curves with palette. Seems like there should be a way to do this with a
|
||||||
|
Loading…
Reference in New Issue
Block a user