mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-06 06:21:16 +08:00
moved the @curves declaration further down, closer to where it is used
Ignore-this: f51fd22e3519c6dae6020e3721d70df8 darcs-hash:20091206222027-0cb85-0668ea7d622ba67d9cd78bebfdbcd37f11cae5f0.gz
This commit is contained in:
parent
d6e1dc5643
commit
09b11a81f7
@ -10,11 +10,6 @@ use Thread::Queue;
|
||||
|
||||
autoflush STDOUT 1;
|
||||
|
||||
# list containing the plot data. Each element is a reference to a list,
|
||||
# representing the data for one curve. The first "point" is a string of plot
|
||||
# options
|
||||
my @curves = ();
|
||||
|
||||
my $usage = <<OEF;
|
||||
Usage: $0 <options>
|
||||
--[no]stream Do [not] display the data a point at a time, as it comes in
|
||||
@ -77,6 +72,12 @@ if( defined $options{"help"} )
|
||||
die($usage);
|
||||
}
|
||||
|
||||
|
||||
# list containing the plot data. Each element is a reference to a list,
|
||||
# representing the data for one curve. The first "point" is a string of plot
|
||||
# options
|
||||
my @curves = ();
|
||||
|
||||
# now start the data acquisition and plotting threads
|
||||
my $dataQueue;
|
||||
my $xwindow;
|
||||
|
Loading…
Reference in New Issue
Block a user