summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-03-01(jm_AC_DOS): Remove extra backslashes, now thatJim Meyering
AH_VERBATIM really does output its argument verbatim.
2001-02-25*** empty log message ***Jim Meyering
2001-02-25Fix typo: '-d=1may' -> '-d 1may'.Jim Meyering
Fix and clarify time zone usage in 'date' examples.
2001-02-23*** empty log message ***Jim Meyering
2001-02-22(keycompare): Move declarations of locals, lena and lenb,Jim Meyering
into the inner scope where they are used.
2001-02-21(main): Remove assignment-in-if-expression.Jim Meyering
In fact, remove t_errno altogether.
2001-02-21*** empty log message ***Jim Meyering
2001-02-21Add two tests of existing behavior -- both willJim Meyering
have to be changed (soon after release), once ls is fixed.
2001-02-20.Jim Meyering
2001-02-20test for existing behaviorJim Meyering
2001-02-20.Jim Meyering
2001-02-20*** empty log message ***Jim Meyering
2001-02-20(FULL_TIME_OPTION): Renamed from FULL_TIME, forJim Meyering
consistency with the other enum values.
2001-02-20(SI_OPTION): New enum value.Jim Meyering
(long_options): Use it instead of 'H' for --si. (decode_switches): Warn that -H will change soon. (usage): Likewise.
2001-02-20revert last change, until after releaseJim Meyering
2001-02-20*** empty log message ***Jim Meyering
2001-02-20revert last change, until after the releaseJim Meyering
2001-02-20`ls -Fd symlink-to-directory' would print a trailing `/'Jim Meyering
Now it prints a trailing `@'. (gobble_file): Don't clobber lstat stats of command line arguments when using -d and -F (--directory and --classify) options.
2001-02-19*** empty log message ***Jim Meyering
2001-02-19(AUTHORS): Add Paul Eggert.Jim Meyering
2001-02-19*** empty log message ***Jim Meyering
2001-02-19Fix a race condition: freed storage accessed during a signal handler.Jim Meyering
(struct tempnode.next): Now volatile. (zaptemp): Free the file name after removing it from the temp list, not before, because a signal can arrive between the two actions and cleanup () traverses the list.
2001-02-19*** empty log message ***Jim Meyering
2001-02-19(jm_CHECK_ALL_HEADERS): Check for sys/resource.h.Jim Meyering
2001-02-19*** empty log message ***Jim Meyering
2001-02-19Check for input size, and do not overallocate memory.Jim Meyering
Also check for memory quotas. Revamp storage management so that line tables and character data are taken from the same buffer. Line tables are now in reverse order, since they grow down while the character data grow up. (<sys/resource.h>): Include if HAVE_SYS_RESOURCE_H. (struct rlimit, getrlimit): Define a replacement if RLIMIT_DATA is not defined. (RLIMIT_AS): Define to RLIMIT_DATA if not defined. (struct lines): Remove. (struct buffer): New members nlines, line_bytes, eof. Remove member newline_free; no longer needed, since the code no longer runs out of line table space. (SORTALLOC_MIN, SORTALLOC_DEFAULT_MIN): Remove. (sort_size): Renamed from sortalloc; now applies to the sum of the character data and the line table, not just the character data. (MIN_SORT_SIZE, INPUT_FILE_SIZE_GUESS): New macros. (linelength): remove. (specify_sort_size): Don't worry about the distinction between the character data and the line table; that is now the caller's responsibility. (default_sort_size): Return the value, instead of being executed for side effect. Return half of available memory, or 1/16 of total memory, whichever is greater; except do not exceed 1/2 of quota. (sort_buffer_size): New function. (initbuf): New arg LINE_BYTES. Ensure that the line array is properly aligned. Initialize the new set of struct buffer members. (buffer_linelim): New function. (fillbuf): Return int, not size_t, since the callers merely care whether the result is nonzero. New arg FILE so that error messages can report the file name. Keep track of eof. Initialize the line table too, taking its memory from the input buffer's memory; this subsumes the old findlines function and removes the need for worrying about running out of line table entries. (checkfp, mergefps, sortlines, merge, sort): Adjust to the new storage management regime, in particular the fact that line tables are now filled in by fillbuf and are in reverse order. (checkfp): Now takes char *, not const char *, since subroutines require that now. Rewrite to avoid lint and duplicate code. If line length alloc calculation overflows, simply allocate enough memory to hold the line. (mergefps): New arg FILES, used for buffer size calculation and error messages. Rewrite to avoid lint. Do not loop if savealloc*2 overflows. (mergefps, merge): Zap temporary files eagerly rather than lazily; this is needed because we now pass FILES to mergefps. (sortlines): Args now point at end of arrays, not at beginnings. (sort): Do not allocate temporary line array for sortlines; instead, take the space from the same buffer. (main): Adjust to sort_size and default_sort_size changes.
2001-02-19*** empty log message ***Jim Meyering
2001-02-19(wc): Rename innermost `buf' to avoid shadowing warning.Jim Meyering
(wc): Rename local `wc' to avoid shadowing function name.
2001-02-18*** empty log message ***Jim Meyering
2001-02-18(TESTS): Add isatty.Jim Meyering
2001-02-18New test, for the bug fixed below.Jim Meyering
2001-02-18*** empty log message ***Jim Meyering
2001-02-18*** empty log message ***Jim Meyering
2001-02-18*** empty log message ***Jim Meyering
2001-02-18*** empty log message ***Jim Meyering
2001-02-18`chmod 0 file; rm file' would no longer prompt before removal.Jim Meyering
(remove_file): Revert last change.
2001-02-18*** empty log message ***Jim Meyering
2001-02-18rename test input files to avoid conflicts on case-insensitive file systemsJim Meyering
2001-02-18Update file names to reflect renamings.Jim Meyering
2001-02-18*** empty log message ***Jim Meyering
2001-02-18.Jim Meyering
2001-02-17fix typoJim Meyering
2001-02-17*** empty log message ***Jim Meyering
2001-02-17Sync from GNU libc. Use double quotes, not <...>Jim Meyering
around included file name.
2001-02-17*** empty log message ***Jim Meyering
2001-02-17(__strnlen): Merge in a change from GNU libc.Jim Meyering
2001-02-17*** empty log message ***Jim Meyering
2001-02-17update comments from libcJim Meyering
2001-02-17*** empty log message ***Jim Meyering
2001-02-17(main): `quote' the offending argument.Jim Meyering