Compare commits

...

2 Commits

Author SHA1 Message Date
Dima Kogan
7d7374e628 version bump 2011-12-27 16:48:13 -08:00
Dima Kogan
7559ed5f66 data-ids can now include characters such as -. Any non-whitespace works 2011-12-27 16:46:30 -08:00
2 changed files with 8 additions and 1 deletions

View File

@@ -388,7 +388,7 @@ sub mainThread
my $numRE = '-?\d*\.?\d+(?:[Ee][-+]?\d+)?';
# a point may be preceded by an id
my $pointRE = $options{dataid} ? '(\w+)\s+' : '()';
my $pointRE = $options{dataid} ? '(\S+)\s+' : '()';
$pointRE .= '(' . join('\s+', ($numRE) x $valuesPerPoint) . ')';
$pointRE = qr/$pointRE/;

7
debian/changelog vendored
View File

@@ -1,3 +1,10 @@
feedgnuplot (1.18) unstable; urgency=low
* data-ids can now include characters such as -. Any non-whitespace
works
-- Dima Kogan <dkogan@secretsauce.net> Tue, 27 Dec 2011 16:47:36 -0800
feedgnuplot (1.17) unstable; urgency=low
[ Dima Kogan ]