mirror of
https://github.com/dkogan/feedgnuplot.git
synced 2025-05-06 06:21:16 +08:00
when grabbing data either from the thread-safe queue or from <>, I should be using //, not ||
Ignore-this: 853ee4746850b2da83006e06ea4dc82b darcs-hash:20091206222252-0cb85-cbe476e37cd152cf1952356df6534ab4fd2a4e3d.gz
This commit is contained in:
parent
747d620b48
commit
59fdc08dc6
@ -190,7 +190,7 @@ sub mainThread {
|
||||
my $numRE = qr/([-]?[0-9\.]+(?:e[-]?[0-9]+)?)/;
|
||||
my $xlast;
|
||||
|
||||
while( $_ = ($dataQueue && $dataQueue->dequeue()) || <> )
|
||||
while( $_ = ($dataQueue && $dataQueue->dequeue()) // <> )
|
||||
{
|
||||
if($_ ne "Plot now")
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user