1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-08-17 09:06:50 +02:00

*** empty log message ***

This commit is contained in:
Jim Meyering
2004-02-21 09:26:56 +00:00
parent 30e92dbb2e
commit 75845d6c30
+16
View File
@@ -1,4 +1,20 @@
GNU coreutils NEWS -*- outline -*-
* Major changes in release 5.2.1 (2004-02-19) [stable]
** Bug fixes
`expr' now conforms to POSIX better:
Integers like -0 and 00 are now treated as zero.
The `|' operator now returns 0, not its first argument, if both
arguments are null or zero. E.g., `expr "" \| ""' now returns 0,
not the empty string.
The `|' and `&' operators now use short-circuit evaluation, e.g.,
`expr 1 \| 1 / 0' no longer reports a division by zero.
* Major changes in release 5.2.0 (2004-02-19) [stable]
** Bug fixes