summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-09-05.Jim Meyering
2003-09-05*** empty log message ***Jim Meyering
2003-09-05Don't ignore -S if input is a pipe. Bug report by Michael McFarland inJim Meyering
<http://mail.gnu.org/archive/html/bug-coreutils/2003-09/msg00008.html>. (sort_buffer_size): Omit SIZE_BOUND arg. Compute the size_bound ourselves. if an input file is a pipe and the user specified a size, use that size instead of trying to guess the pipe size. This has the beneficial side effect of avoiding the overhead of default_sort_size in that case. All callers changed. (sort): Remove static var size; now done by sort_buffer_size.
2003-09-05*** empty log message ***Jim Meyering
2003-09-05(elide_tail_lines_pipe): Don't assign 0 or SAFE_READ_ERROR to tmp->nbytes.Jim Meyering
(struct linebuffer): Change nbytes and nlines from unsigned int to size_t. unsigned int is safe (after the 2003-09-03 patch) but size_t is cleaner. Standardize on BUFSIZ as opposed to other macro names and values. (BUFSIZE): Remove. All uses changed to BUFSIZ.
2003-09-05(pipe_lines, pipe_bytes): Don't assign 0 or SAFE_READ_ERROR to tmp->nbytes.Jim Meyering
(struct linebuffer, struct charbuffer): Change nbytes and nlines from unsigned int to size_t. unsigned int is safe (after the 2003-09-03 patch) but size_t is cleaner. (pipe_bytes): Likewise for local variable 'i', which was 'int'. Standardize on BUFSIZ as opposed to other macro names and values. (BUFSIZ) [!defined BUFSIZ]: Remove. stdio.h has always defined it, and other code already assumes it's defined.
2003-09-05*** empty log message ***Jim Meyering
2003-09-05Standardize on BUFSIZ as opposed to other macro names and values.Jim Meyering
(BUFSIZ) [!defined BUFSIZ]: Don't define. (IO_BUF_SIZE): Remove; replace all uses with sizeof io_buf. (io_buf): IO_BUF_SIZE -> BUFSIZ.
2003-09-05*** empty log message ***Jim Meyering
2003-09-05Wait .5 seconds for backgrounded processJim Meyering
to start, rather than just .1. Upon failure, print unexpected state.
2003-09-05*** empty log message ***Jim Meyering
2003-09-05(onearg-2): Output should be empty.Jim Meyering
2003-09-05(step): Default to 1.Jim Meyering
(print_numbers): Allow the output to be empty. (main): The default step is 1, even if LAST < FIRST; as per documentation.
2003-09-05*** empty log message ***Jim Meyering
2003-09-05(wget_files): Temporarily disable, until masterJim Meyering
versions are restored to ftp.gnu.org.
2003-09-04.Jim Meyering
2003-09-04.Jim Meyering
2003-09-04*** empty log message ***Jim Meyering
2003-09-04(AM_INIT_AUTOMAKE): Specify automake-1.7.6.Jim Meyering
2003-09-04*** empty log message ***Jim Meyering
2003-09-04sort -t '\0' now uses a NUL tab.Jim Meyering
sort option order no longer matters, unless POSIX requires it.
2003-09-04(sort invocation): -d now overrides -i.Jim Meyering
"whitespace" -> "blanks"; "whitespace" isn't correct. -t '\0' now specifies a NUL tab.
2003-09-04*** empty log message ***Jim Meyering
2003-09-04*** empty log message ***Jim Meyering
2003-09-04This makes seq's --width (-w) option work properly even when theJim Meyering
endpoint requiring the largest width is negative and smaller than the other endpoint. (get_width_format): Include `-' in the set of bytes allowed in a `simple' number (no decimal point, no exponent).
2003-09-04*** empty log message ***Jim Meyering
2003-09-04*** empty log message ***Jim Meyering
2003-09-04*** empty log message ***Jim Meyering
2003-09-04(usage): Say "blanks" instead of "whitespace",Jim Meyering
Similar fixes for many comments. (TAB_DEFAULT): New constant, so that we can support NUL as the field separator. (tab): Now int, not char. Initialize to TAB_DEFAULT. (specify_sort_size): If multiple sizes are specified, use the largest. (begfield, limfield): Support NUL tab char. (set_ordering): Do not let -i override -d. (main): Report an error if incompatible -o or -t options are given. Report an error for "-t ''". Allow "-t '\0'" to specify a NUL tab.
2003-09-04[o2, nul-tab]: New tests for changes of 2003-09-02.Jim Meyering
2003-09-04(elide_tail_lines_pipe): Don't truncate return value from safe_read.Jim Meyering
2003-09-04(pipe_lines): Don't truncate return value from safe_read.Jim Meyering
2003-09-03*** empty log message ***Jim Meyering
2003-09-03*** empty log message ***Jim Meyering
2003-09-03(human_readable): Fix bug that rounded 10501 to 10k.Jim Meyering
Bug reported by Lute Kamstra in <http://mail.gnu.org/archive/html/bug-gnulib/2003-09/msg00003.html>.
2003-09-03*** empty log message ***Jim Meyering
2003-09-03(AUTHORS): Remove Larry McVoy's name, since the relativelyJim Meyering
small amount of code from him was first moved to lib/human.c, and was subsequently rewritten entirely.
2003-09-03*** empty log message ***Jim Meyering
2003-09-03(relative_time_table): Use tDAY_UNIT for "tomorrow",Jim Meyering
"yesterday", "today", and "now" rather than tMINUTE_UNIT. Of course with correspondingly smaller numbers for tomorrow and yesterday. From Tadayoshi Funaba. Originally installed into sh-utils on 1999-08-07, but the patch was mistakenly reverted by the next change to that shared file (but this time in fileutils) on 1999-08-29.
2003-09-02*** empty log message ***Jim Meyering
2003-08-31*** empty log message ***Jim Meyering
2003-08-31Reorder/rename the last 3 tests to make them consistent withJim Meyering
those in tests/sha1sum/basic-1.
2003-08-31(check-bsd2, check-bsd3): New tests forJim Meyering
--check exit status and BSD SHA1 format (adapted from tests in tests/md5sum/basic-1).
2003-08-31(check-bsd3): New test to make sure thatJim Meyering
`md5sum --check' doesn't accept the BSD SHA1 format (adapted from `check-bsd' test in tests/sha1sum/basic-1).
2003-08-31(split_3): Accept the BSD format for genericJim Meyering
message digest modes. Currently works with BSD's MD5 and SHA1 formats since these are the two algorithms presently used in coreutils. Updated comments to reflect this change. (bsd_split_3): Updated comments.
2003-08-31Change meaning of -l from --lookup to --login, per POSIX.Jim Meyering
who's -l option has been eliciting an unconditional warning about this impending change since sh-utils-2.0.12 (April 2002).
2003-08-31*** empty log message ***Jim Meyering
2003-08-30*** empty log message ***Jim Meyering
2003-08-30(do_link): Use SAME_INODE rather than open-coding it.Jim Meyering
2003-08-30*** empty log message ***Jim Meyering