From 64b12e47381afebf05da6aa32e8308b1b2a53845 Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Thu, 9 Feb 2017 19:12:18 -0800 Subject: [PATCH] When plotting histograms, --xlen can coexist with --xmin/--xmax --- bin/feedgnuplot | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bin/feedgnuplot b/bin/feedgnuplot index 8631195..9086eeb 100755 --- a/bin/feedgnuplot +++ b/bin/feedgnuplot @@ -387,7 +387,8 @@ sub interpretCommandline } if($options{stream} && defined $options{xlen} && - ( defined $options{xmin} || defined $options{xmax})) + ( defined $options{xmin} || defined $options{xmax}) && + !defined $options{histogram}) { print STDERR "With --stream and --xlen the X bounds are set, so neither --xmin nor --xmax make sense\n"; exit -1;