--xlen now implies --monotonic, but ! --xlen does NOT mean ! --monotonic

This commit is contained in:
Dima Kogan 2011-05-21 00:43:58 -07:00
parent 07d6737dcd
commit 38312c6439

View File

@ -203,7 +203,7 @@ sub interpretCommandline
}
# --xlen implies an order to the data, so I force monotonicity
$options{monotonic} = defined $options{xlen};
$options{monotonic} = 1 if defined $options{xlen};
}
sub getGnuplotVersion