From: Jim Meyering Date: Wed, 26 Jan 1994 18:58:08 +0000 (+0000) Subject: . X-Git-Tag: textutils-1_12_1~765 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d5dc4b055fc0e19d2dc6175946c8bc4a1d7c0eb7;p=thirdparty%2Fcoreutils.git . --- diff --git a/old/textutils/ChangeLog b/old/textutils/ChangeLog index 965f33478f..d3b4cadb5c 100644 --- a/old/textutils/ChangeLog +++ b/old/textutils/ChangeLog @@ -1,3 +1,21 @@ +Wed Jan 18 16:14:00 1994 Jim Meyering (meyering@comco.com) + + * unexpand.c (unexpand): Don't segfault when given a name of a + nonexistent file. + +Thu Jan 13 17:27:38 1994 Jim Meyering (meyering@comco.com) + + * src/Makefile.in: Change all link commands to use both $(CFLAGS) + and $(LDFLAGS). + + * csplit.c (load_buffer): Rather than incrementing buffer size, + double it each time we fail to find a newline. Otherwise, csplit + would run out of memory when processing files with very long lines. + +Mon Jan 10 01:20:38 1994 Jim Meyering (meyering@comco.com) + + * man/Makefile.in (manprefix): Use binprefix as the default. + Sat Jan 08 22:22:45 1994 Jim Meyering (meyering@comco.com) * cat.c: Use full_write and safe_read instead of write and read resp. diff --git a/old/textutils/NEWS b/old/textutils/NEWS index df71b4645e..c9f7f7a2d4 100644 --- a/old/textutils/NEWS +++ b/old/textutils/NEWS @@ -1,4 +1,8 @@ User-visible changes in release 1.10 +* unexpand gives a diagnostic (rather than a segfault) when given a name of + a nonexistent file. +* cat, csplit, head, split, sum, tac, tail, tr, and wc no longer fail + gratuitously when continued after a suspended read or write system call. * cut interprets -d '' to mean `use the NUL byte as the delimiter.' rather than reporting that no delimiter was specified. * `echo a:b:c: | cut -d: -f3,4' prints `c:'. Before it printed just `c'.