1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

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.
This commit is contained in:
Paul Eggert
2006-07-01 00:11:23 +00:00
parent 248c092226
commit 69f1a97138
5 changed files with 67 additions and 0 deletions

View File

@@ -1,3 +1,11 @@
2006-06-30 Paul Eggert <eggert@cs.ucla.edu>
* xstrtod.c (XSTRTOD, DOUBLE): New macros, so that we can support
both double and long double versions.
(XSTRTOD): Renamed from xstrtod. Use DOUBLE internally.
* xstrtold.c: New file.
* xstrtod.h (xstrtold): New decl.
2006-06-29 Derek R. Price <derek@ximbiot.com>
* strftime.c: Assume strftime exists.