]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
.
authorJim Meyering <jim@meyering.net>
Wed, 26 Jan 1994 18:58:08 +0000 (18:58 +0000)
committerJim Meyering <jim@meyering.net>
Wed, 26 Jan 1994 18:58:08 +0000 (18:58 +0000)
old/textutils/ChangeLog
old/textutils/NEWS

index 965f33478f5ab438e88cffbe922366a254f94620..d3b4cadb5ce79fbb8f08cc5959763fac390a1adf 100644 (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.
index df71b4645e3e9e70c4698c4b2586f56b355567a6..c9f7f7a2d453d405a10bdf10985c6a4f186c4dd4 100644 (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'.