]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
merge with 1.9.1
authorJim Meyering <jim@meyering.net>
Mon, 15 Nov 1993 15:57:55 +0000 (15:57 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 15 Nov 1993 15:57:55 +0000 (15:57 +0000)
old/textutils/ChangeLog
old/textutils/NEWS

index 6ea9e981db4e5a87e69fcdd5d0f761be89617d94..28e372560d4fcdecda355b346a2d79b5de8ccbde 100644 (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.
index c68b1c58c9013d00b1000d82c1fbce129d6f3a82..4cd0478d7e5376e587306d0a9e94952ea9d38b18 100644 (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
+\f
 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.