summaryrefslogtreecommitdiff
path: root/old
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1993-10-05 18:29:05 +0000
committerJim Meyering <jim@meyering.net>1993-10-05 18:29:05 +0000
commit3b5543d43131da003fcf75c5d9062da0199b3b88 (patch)
tree025cae0397b194906c0d1d9ebad5d4dafac7f820 /old
parent5bf316d15e9fb57ef165d9a93f8342f895cd6146 (diff)
downloadcoreutils-3b5543d43131da003fcf75c5d9062da0199b3b88.tar.xz
merge with 1.8a
Diffstat (limited to 'old')
-rw-r--r--old/textutils/ChangeLog18
-rw-r--r--old/textutils/NEWS2
2 files changed, 20 insertions, 0 deletions
diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog
index 4c903aa21..49d835092 100644
--- a/old/textutils/ChangeLog
+++ b/old/textutils/ChangeLog
@@ -1,3 +1,21 @@
+Thu Sep 9 21:52:10 1993 Jim Meyering (meyering@comco.com)
+
+ * src/*.c: Print version on standard output, not stderr.
+
+ * configure.in: Add AC_LONG_64_BITS.
+ * memchr.c: Use #ifdef LONG_64_BITS instead of
+ `if (sizeof(longword) > 4)'.
+
+Tue Jul 27 22:19:39 1993 Jim Meyering (meyering@comco.com)
+
+ * cat.c (cat): Don't fail just because ioctl (d, FIONREAD,... can't
+ always handle devices. Ignore errno == EINVAL and errno == ENODEV.
+ `cat -v /dev/null' was failing on many systems.
+
+ * cut.c (cut_fields): Don't strip off trailing delimiter e.g.
+ `echo 'a:b:c:' | cut -d: -f3-' should print `c:', not just `c'.
+ From William Dowling <will@franklin.com>.
+
Thu May 27 01:37:51 1993 Jim Meyering (meyering@comco.com)
* Version 1.8.
diff --git a/old/textutils/NEWS b/old/textutils/NEWS
index 2555910bc..8141076c5 100644
--- a/old/textutils/NEWS
+++ b/old/textutils/NEWS
@@ -1,3 +1,5 @@
+Major changes in release 1.9:
+* cat -v /dev/null works on more systems
Major changes in release 1.8:
* added non-ANSIfied version of memchr.c from GNU libc.