diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2006-07-01 00:11:23 +0000 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2006-07-01 00:11:23 +0000 |
commit | 69f1a97138d154be7c3f4e8ed4687793530bc625 (patch) | |
tree | a6f553309b12cc960bab62991d73deb3a409d644 /doc | |
parent | 248c092226c26ef4605d83fba5d202420b9bc8d0 (diff) | |
download | coreutils-69f1a97138d154be7c3f4e8ed4687793530bc625.tar.xz |
seq defaults to a minimal fixed point format that does not lose
information if seq's operands are all fixed point decimal numbers.
You no longer need the `-f%.f' in `seq -f%.f 1048575 1024 1050623',
for example, since the default format now has the same effect.
seq now lets you use %a, %A, %E, %F, and %G formats.
seq now uses long double internally rather than double.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 99a40817a..e253cad65 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,12 @@ +2006-06-30 Paul Eggert <eggert@cs.ucla.edu> + + * coreutils.texi (seq invocation): seq now uses long double + internally rather than double. It now defaults to a minimal fixed + point format if possible. It lets you use %a, %A, %E, %F, %G. + Don't assume printf doesn't work for numbers that fit in 64 but + not 32 bits; typically they work these days. Improve discussion + of large integers and update the rounding-error numbers. + 2006-06-28 Paul Eggert <eggert@cs.ucla.edu> * coreutils.texi (sort invocation): 'sort +1 -2' is now supported |