summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2005-08-23*** empty log message ***Jim Meyering
2005-08-23Update from gnulib.Jim Meyering
2005-08-23.Jim Meyering
2005-08-23*** empty log message ***Jim Meyering
2005-08-23*** empty log message ***Jim Meyering
2005-08-23(sc_useless_cpp_parens): New rule.Jim Meyering
(syntax-check-rules): Add it.
2005-08-23*** empty log message ***Jim Meyering
2005-08-23.Jim Meyering
2005-08-23* .x-sc_useless_cpp_parens: New empty file.Jim Meyering
* Makefile.am (EXTRA_DIST): Add it.
2005-08-23*** empty log message ***Jim Meyering
2005-08-23Use `5.3.1-cvs' as the version string.Jim Meyering
2005-08-23*** empty log message ***Jim Meyering
2005-08-23Remove unnecessary parens in `#if defined (SYMBOL)' expressions.Jim Meyering
2005-08-23*** empty log message ***Jim Meyering
2005-08-23Remove unnecessary parens in `#if defined (SYMBOL)' expressions.Jim Meyering
2005-08-23Remove unnecessary parens in `#if defined (SYMBOL)' expressions.Jim Meyering
2005-08-23*** empty log message ***Jim Meyering
2005-08-23Remove unnecessary parens in `#if defined (SYMBOL)' expressions.Jim Meyering
2005-08-23Include <float.h> unconditionally.Jim Meyering
2005-08-23(print_uptime): Remove unnecessary parens in `#if defined (SYMBOL)' expressions.Jim Meyering
2005-08-22(do_link): If ln is invoked with --interactive (-i),Jim Meyering
encounters an existing destination file, and gets an affirmative response, then first try to unlink the destination file rather than simply failing. Suggestion from Karl Berry.