This commit is contained in:
Jim Meyering
1994-01-26 18:58:08 +00:00
parent c6756ec787
commit d5dc4b055f
2 changed files with 22 additions and 0 deletions
+18
View File
@@ -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.
+4
View File
@@ -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'.