summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2003-09-05 19:11:20 +0000
committerJim Meyering <jim@meyering.net>2003-09-05 19:11:20 +0000
commit566dee1e9637e7244a87e975fbda570b35767876 (patch)
treeb1cb9fe0c3a53de645c08d70b468e11589c8babe /ChangeLog
parent51fe03e45cc991650122ba5e34cab3133e62a575 (diff)
downloadcoreutils-566dee1e9637e7244a87e975fbda570b35767876.tar.xz
*** empty log message ***
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog25
1 files changed, 25 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 8668ac84e..10e609c37 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,11 +2,36 @@
* Version 5.0.91.
+ * Use automake-1.7.6b and autoconf-2.57b. Regenerate dependent files.
+
* tests/tail-2/tail-n0f: Wait .5 seconds for backgrounded process
to start, rather than just .1. Upon failure, print unexpected state.
2003-09-04 Paul Eggert <eggert@twinsun.com>
+ Fix a bug reported by Andreas Schwab in
+ <http://mail.gnu.org/archive/html/bug-coreutils/2003-09/msg00009.html>.
+ * src/head.c (elide_tail_lines_pipe): Don't assign 0 or
+ SAFE_READ_ERROR to tmp->nbytes.
+ * src/tail.c (pipe_lines, pipe_bytes): Likewise.
+
+ * src/head.c (struct linebuffer): Change nbytes and nlines
+ from unsigned int to size_t. unsigned int is safe (after the
+ changes noted above) but size_t is cleaner.
+ * src/tail.c (struct linebuffer, struct charbuffer): Likewise.
+ (pipe_bytes): Likewise for local variable 'i', which was 'int'.
+
+ Standardize on BUFSIZ as opposed to other macro names and values.
+ * src/head.c (BUFSIZE): Remove. All uses changed to BUFSIZ.
+ * src/tail.c (BUFSIZ) [!defined BUFSIZ]: Remove.
+ stdio.h has always defined it,
+ and other code already assumes it's defined.
+ * src/tr.c (BUFSIZ) [!defined BUFSIZ]: Likewise.
+ (IO_BUF_SIZE): Remove; replace all uses with sizeof io_buf.
+ (io_buf): IO_BUF_SIZE -> BUFSIZ.
+
+2003-09-04 Paul Eggert <eggert@twinsun.com>
+
* src/seq.c (step): Default to 1.
(print_numbers): Allow the output to be empty.
(main): The default step is 1, even if LAST < FIRST;