1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

merge with 1.9.1

This commit is contained in:
Jim Meyering
1993-11-15 15:57:55 +00:00
parent 4bce07bc25
commit c75156c7c8
2 changed files with 28 additions and 0 deletions

View File

@@ -1,3 +1,25 @@
Fri Nov 12 00:44:49 1993 Jim Meyering (meyering@comco.com)
* Version 1.9.1.
* tac.c (usage): Fix typo in long usage.
* sort.c (usage): Likewise.
From Philippe.Schnoebelen@imag.fr.
* cut.c [FATAL_ERROR]: New macro.
(main): Call both error and usage (2) through FATAL_ERROR in
many places. Before, only `error (2...' was called.
(invalid_list): Removed. This function is subsumed by FATAL_ERROR.
* cut.c (cut_fields): Properly handle input lacking a terminating
newline. Before, the command `printf "a\tb" |cut -f 1' generated
no output.
Tue Nov 09 17:26:25 1993 Jim Meyering (meyering@comco.com)
od.c (usage): Change --backward-compatible to --traditional in
the long usage message.
Sun Nov 07 00:50:05 1993 Jim Meyering (meyering@comco.com)
* Version 1.9.

View File

@@ -1,4 +1,10 @@
Major changes in release 1.9.1:
* cut no longer ignores the last line of input when that line lacks a
trailing newline character
Major changes in release 1.9:
* `echo a:b:c: | cut -d: -f3-' prints `c:' and
`echo a:b | cut -d: -f1' prints `a'.
* the command `printf '\t\n' |fold -w n' now terminates.
Before, it wouldn't stop for n less than 8.
* sort accepts and ignores -y[string] options for compatibilty with Solaris.