summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2005-09-09More nice fixes.Paul Eggert
2005-09-09(nice invocation): Document "niceness" versusPaul Eggert
"nice value" versus "scheduling priority".
2005-09-09(main): Hoist errno=0 outside the ifdef.Paul Eggert
2005-09-09(utils_cv_func_setpriority): Simplify the tests.Paul Eggert
Define HAVE_NICE rather than NICE_PRIORITY (since a niceness is not a priority); all uses changed.
2005-09-09Document "niceness" vs "nice value".Paul Eggert
2005-09-09*** empty log message ***Jim Meyering
2005-09-09(neg-secs2, fill-1, fill-2): Add new tests.Jim Meyering
2005-09-08Use the phrase "niceness" instead of "nice value" to describePaul Eggert
the biased nice value that can go negative. This corrects a discrepancy with POSIX, which states that nice values are nonnegative.
2005-09-07*** empty log message ***Jim Meyering
2005-09-07(time_args): Use NULL in place of 0.Jim Meyering
2005-09-06* verify.h: Use a bit-field instead.Paul Eggert
2005-09-06(__builtin_constant_p): Remove, undoing previous change.Paul Eggert
(verify_type__): Solve the problem by using a bit-field rather than an array.
2005-09-05.Jim Meyering
2005-09-05*** empty log message ***Jim Meyering
2005-09-05(setuid-etc): New test, for today's addition of colorization forJim Meyering
setuid, setgid files and sticky, other-writable, sticky-and-other-writable directories.
2005-09-05Colorize set-user-ID and set-group-ID files and sticky,Jim Meyering
other-writable, and sticky-and-other-writable directories. (indicator_no[]): Add new symbols. (indicator_name[]): Add corresponding mode strings. (color_indicator[]): Add an entry for each new mode string. (print_color_indicator): Honor new types. From Mike Frysinger, based on a patch from Fedora.
2005-09-05Colorize set-user-ID and set-group-ID files and sticky,Jim Meyering
other-writable, and sticky-and-other-writable directories. Document the default colors for the new strings. From Mike Frysinger, based on a patch from Fedora.
2005-09-05Colorize set-user-ID and set-group-ID files and sticky,Jim Meyering
other-writable, and sticky-and-other-writable directories. (slack_codes): Add new dircolors mode names. (ls_codes): Add corresponding two-letter ls mode strings. From Mike Frysinger, based on a patch from Fedora.
2005-09-05*** empty log message ***Jim Meyering
2005-09-05(__builtin_constant_p) [__GNUC__ <= 2]: Define to 1.Jim Meyering
(verify_type__) [verify_error_if_non_const__]: New member/test, to help detect when verify or verify_expr is mistakenly passed a non-constant argument within a function.
2005-09-05Don't omit comments until there is better documentation.Jim Meyering
2005-09-04.Jim Meyering
2005-09-04.Jim Meyering
2005-09-01Clarify comment about size bounds.Paul Eggert
2005-09-01Require gl_STAT_MACROSJim Meyering
2005-09-01*** empty log message ***Jim Meyering
2005-09-01Require gl_FUNC_CHOWN, for the definition ofJim Meyering
CHOWN_MODIFIES_SYMLINK, which is used by lchown.c.
2005-08-31*** empty log message ***Jim Meyering
2005-08-31(quotearg_n_options): Change code to be suboptimal, inJim Meyering
order to avoid an unsuppressible warning from gcc on 64-bit systems.
2005-08-31*** empty log message ***Jim Meyering
2005-08-31(get_charset_aliases): Add `void' in parameter listJim Meyering
to placate gcc's -Wstrict-prototypes.
2005-08-29"rm -FOO" now suggests "rm ./-FOO" if the file "-FOO"Paul Eggert
exists and "-FOO" is not a valid option.
2005-08-29Include lstat.h, quotearg.h.Paul Eggert
(diagnose_leading_hyphen): New function. (main): Use it.
2005-08-28update from gnulibJim Meyering
2005-08-27New fileJim Meyering
2005-08-27Include <sys/types.h> and declare creat_safer.Jim Meyering
2005-08-27*** empty log message ***Jim Meyering
2005-08-27sync from gnulibJim Meyering
2005-08-27*** empty log message ***Jim Meyering
2005-08-27Go ahead and leave the patch in (i.e., revertJim Meyering
today's change). It doesn't cause a problem after all, since --exclude-from=- is always handled before --files0-from=F.
2005-08-27*** empty log message ***Jim Meyering
2005-08-27Revert the du.c part of the change from 2005-07-02:Jim Meyering
That change (to reopen stdin on F for --files0-from=F) made it so --exclude-from=- and --files0-from=F would not work together.
2005-08-27*** empty log message ***Jim Meyering
2005-08-27*** empty log message ***Jim Meyering
2005-08-27Use `#error' rather than a string literal to provoke failure.Jim Meyering
2005-08-25*** empty log message ***Jim Meyering
2005-08-25Include <config.h>.Jim Meyering
Otherwise, we'd lose LARGEFILE support in any file using e.g. "fcntl--.h"
2005-08-24*** empty log message ***Jim Meyering
2005-08-24(stdopen): Revert to iterating over descriptors, butJim Meyering
rather than using fstat, use fcntl with its F_GETFD flag, which is more efficient. Unlike the 2-syscall dup-close approach, this one doesn't apply any unnecessary pressure on the file descriptor pool -- thus there is one fewer way to fail.
2005-08-24adjust prototypeJim Meyering
Include stdbool.h.