From 2d17b5b39436fb301a37c0be4df1d190a0eebb6f Mon Sep 17 00:00:00 2001 From: Dima Kogan Date: Sun, 6 Jun 2010 21:43:34 -0700 Subject: [PATCH] size option must not be quoted --- feedGnuplot.pl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/feedGnuplot.pl b/feedGnuplot.pl index 81df6ec..0f3b5a3 100755 --- a/feedGnuplot.pl +++ b/feedGnuplot.pl @@ -294,8 +294,7 @@ sub mainThread { print(PIPE "set ylabel \"" . $options{"ylabel" } . "\"\n") if $options{"ylabel"}; print(PIPE "set y2label \"" . $options{"y2label"} . "\"\n") if $options{"y2label"}; print(PIPE "set title \"" . $options{"title" } . "\"\n") if $options{"title"}; - - print(PIPE "set size \"" . $options{size} . "\"\n") if defined $options{"size"}; + print(PIPE "set size $options{size}\n") if $options{size}; # For the specified values, set the legend entries to 'title "blah blah"' if($options{"legend"})