summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2007-06-23 09:27:11 +0200
committerJim Meyering <jim@meyering.net>2007-06-23 09:43:59 +0200
commita0304574e96916f0444b04f301f8e5191615f800 (patch)
tree9613fac65c5f5a4687a67d91212ba0ec4d03676d /ChangeLog
parent01616c9404b1c66bb395a0438ce28b9e2cb559b7 (diff)
downloadcoreutils-a0304574e96916f0444b04f301f8e5191615f800.tar.xz
seq no longer mishandles cases like "seq 0 0.000001 0.000003",
where it would not print the desired last number. * doc/coreutils.texi (seq invocation): Remove advice about workaround for seq off-by-one problem, since the bug is fixed now. Replace it with more-generic advice about rounding errors. * src/seq.c (long_double_format, print_numbers): New arg NUMERIC_FORMAT. All uses changed.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog10
1 files changed, 10 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index d2cfd361b..aab0bc274 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2007-06-22 Paul Eggert <eggert@cs.ucla.edu>
+
+ * NEWS: seq no longer mishandles obvious cases like
+ "seq 0 0.000001 0.000003" by omitting the last output number.
+ * doc/coreutils.texi (seq invocation): Remove advice about workaround
+ for seq off-by-one problem, since the bug is fixed now. Replace
+ it with more-generic advice about rounding errors.
+ * src/seq.c (long_double_format, print_numbers):
+ New arg NUMERIC_FORMAT. All uses changed.
+
2007-06-22 Pádraig Brady <P@draigBrady.com> (trivial change)
* tests/seq/basic: Add test cases for seq off-by-one problem.