From: Jim Meyering Date: Mon, 15 Nov 1993 15:57:55 +0000 (+0000) Subject: merge with 1.9.1 X-Git-Tag: textutils-1_12_1~806 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c75156c7c84352cc551cf09f63e15a79c15c0800;p=thirdparty%2Fcoreutils.git merge with 1.9.1 --- diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index 6ea9e981db..28e372560d 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -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. diff --git a/old/textutils/NEWS b/old/textutils/NEWS index c68b1c58c9..4cd0478d7e 100644 --- a/old/textutils/NEWS +++ b/old/textutils/NEWS @@ -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.