summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-08-26*** empty log message ***Jim Meyering
2001-08-26New file, from GNU libc.Jim Meyering
2001-08-26*** empty log message ***Jim Meyering
2001-08-26Require jm_AC_PREREQ_XSTRTOIMAX.Jim Meyering
2001-08-26resync with xstrtoumax.m4Jim Meyering
2001-08-26bump serial numberJim Meyering
2001-08-26Add comments explaining why we AC_REPLACE_FUNCS(strtol).Jim Meyering
2001-08-26*** empty log message ***Jim Meyering
2001-08-26*** empty log message ***Jim Meyering
2001-08-26*** empty log message ***Jim Meyering
2001-08-26Stub. Just #define STRTOUXMAX_SIGNED, thenJim Meyering
#include "strtouxmax.c"
2001-08-26Now this file is just a stub.Jim Meyering
2001-08-26Renamed from a factored strtoumax.c.Jim Meyering
2001-08-26Factored to work both for unsigned and signed types, ...Jim Meyering
2001-08-26*** empty log message ***Jim Meyering
2001-08-26(mergefps): Do not allocate at least sort_size bytes for each merge buffer.Jim Meyering
Instead, allocate at least sort_size bytes total.
2001-08-26.Jim Meyering
2001-08-26*** empty log message ***Jim Meyering
2001-08-26(nextarg): Use strcoll, not strcmp.Jim Meyering
2001-08-26expr now uses LC_COLLATE for string comparison, as per POSIX.Jim Meyering
2001-08-25.Jim Meyering
2001-08-25.Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25Use @option, rather than @samp everywhere.Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25Re-enable some commented-out tests.Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25(main): Fix a typo in the previous patch: missingJim Meyering
a bounds check for examples like `uniq a b c'.
2001-08-25(main): Fix some more incompatibilities with POSIX.2,Jim Meyering
(e.g. `uniq +3 --' did not work) by invoking getopt_long with leading '-', resembling what was done to 'sort' on 2001-03-20. Recognize an +N option only if it is an integer in range, and (if POSIXLY_CORRECT) only if a file name argument has not been seen; otherwise silently treat it as a file name. If the user specifies too many operands, output the first one in the error message, as a diagnostic aid.
2001-08-25*** empty log message ***Jim Meyering
2001-08-25(main): Don't report an error when given the valid options `+3 -d'.Jim Meyering
2001-08-25.Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25(different): Don't assume that lengths can fitJim Meyering
into size_t. Tune code for the common case where the line lengths differ: we avoid comparing them entirely in that case.
2001-08-25*** empty log message ***Jim Meyering
2001-08-25Add tests for -s 0 and -w 0.Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25Remove arbitrary restrictions on sizes, fixing a bug reportedJim Meyering
by Geoff Whale. (skip_fields, skip_chars, check_chars): Now size_t, not int. (size_opt): New function. Do not arbitrarily reject size zero. Change the wording of the error message slightly, for convenience. (find_field): Use size_t, not int, to compute sizes. (different, main): check_chars==0 is no longer a special case, as it defaults to SIZE_MAX. (main): Check for overflow with args like -234234234234234. Use 'size_opt' to convert optional arguments to sizes.
2001-08-25Add new test, #54, for the just-fixed bug.Jim Meyering
2001-08-25*** empty log message ***Jim Meyering
2001-08-25(find_field): Don't count trailing newline to beJim Meyering
part of the field. This disagrees with POSIX.2, but it's gotta be a bug in the standard. An interpretations request has been submitted to PASC.
2001-08-25*** empty log message ***Jim Meyering
2001-08-24(cut invocation): Document how cut treats lines with no separators.Jim Meyering
2001-08-24*** empty log message ***Jim Meyering
2001-08-24Use `n_users' in place of `argc - optind' in two more places.Jim Meyering
2001-08-24(main): Fail if -l is specified with no username.Jim Meyering
2001-08-24*** empty log message ***Jim Meyering
2001-08-24(usage): Clarify description of -l. From Clark Morgan.Jim Meyering