From 38312c64399f25678f49d7fa26d6c2c58643963a Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sat, 21 May 2011 00:43:58 -0700 Subject: [PATCH] --xlen now implies --monotonic, but ! --xlen does NOT mean ! --monotonic --- bin/feedGnuplot | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/feedGnuplot b/bin/feedGnuplot index 74fdc9a..1ad5990 100755 --- a/bin/feedGnuplot +++ b/bin/feedGnuplot @@ -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