Age | Commit message (Collapse) | Author | |
---|---|---|---|
2004-10-04 | Regenerate. | Paul Eggert | |
2004-09-28 | (usage): Clarify: --retry works only with --follow=name. | Jim Meyering | |
Reported by Nik A. Melchior in http://bugs.debian.org/273781. | |||
2004-09-28 | (format_address_paren): c is optional, so don't output it if it's '\0'. | Paul Eggert | |
2004-09-27 | . | Jim Meyering | |
2004-09-27 | Use [[] in place of \[, since cvsu doesn't handle the latter, | Jim Meyering | |
and both cvs and cvsu handle the former. | |||
2004-09-26 | Add "ls --hide". | Paul Eggert | |
(file_ignored): Renamed from file_interesting, with inverted return value. Accept the file name, not a struct dirent *. All uses changed. Avoid the expense of calling fnmatch if the file is ignorable due to leading '.'. (all_files, really_all_files): Removed; replaced by: (ignore): New variable. All uses changed. (IGNORE_DEFAULT, IGNORE_DOT_AND_DOTDOT, IGNORE_MINIMAL, HIDE_OPTION): New constants. (hide_patterns): New variable. (long_options, decode_switches, file_ignored, usage): Add support for --hide. (patterns_match): New function. (usage): Replace "hide" with "ignore" in explanation, to avoid confusion. | |||
2004-09-26 | Remove unused variable. | Paul Eggert | |
2004-09-26 | (gobble_file, print_long_format): Don't assume that | Paul Eggert | |
human-readable output has a byte count equal to its column width; this isn't always true in locales where the radix character is not '.' or ','. (format_user_or_group): Revamp code to match the above fix; this avoids the (very faint) possibility of integer overflow. | |||
2004-09-24 | (main): Revamp option processing to support "chmod -r -w file". | Paul Eggert | |
2004-09-24 | (xalloc_die): Declare to be `extern', not `static' | Jim Meyering | |
to avoid a warning from gcc-3.4.1. Reported by Paul Eggert. | |||
2004-09-23 | (parse_obsolete_option): Bring back support | Paul Eggert | |
for obsolete option followed by non-obsolete, or by more than one file. When obsolete, conform to SUSv2 rather than original POSIX 1003.2-1992, as SUSv2 corrected the case of "tail -c". Add support for the SUSv2 "b" modifier. | |||
2004-09-22 | (struct dirstack_state) [current_arg_jumpbuf]: Improve the comment. | Jim Meyering | |
2004-09-22 | (enum) [ALG_MD5]: Define to be 1, not 0. | Jim Meyering | |
2004-09-22 | (xalloc_die): Declare to be static. | Jim Meyering | |
2004-09-22 | (remember_created): Declare as `extern'. | Jim Meyering | |
2004-09-22 | (copy): Declare as `extern'. | Jim Meyering | |
2004-09-22 | (chown_files): Declare as `extern'. | Jim Meyering | |
2004-09-22 | . | Jim Meyering | |
2004-09-22 | (check-AUTHORS): New rule. | Jim Meyering | |
(check): Depend on it. | |||
2004-09-22 | Remove trailing blanks. | Jim Meyering | |
2004-09-22 | Remove trailing blanks. | Jim Meyering | |
2004-09-22 | remove trailing blank | Jim Meyering | |
2004-09-22 | (decode_switches): Don't compare a short value | Paul Eggert | |
to SIZE_MAX: GCC sometimes complains. | |||
2004-09-21 | Remove unused "case 0". | Paul Eggert | |
2004-09-21 | (main): Remove unused "case 0". | Paul Eggert | |
(verbose): Now bool, not int. (VERBOSE_OPTION): New enum. (longopts, main): Use it. | |||
2004-09-21 | Don't include "long-options.h". | Paul Eggert | |
2004-09-21 | Don't include "long-options.h". | Paul Eggert | |
(main): Remove unused "case 0". | |||
2004-09-21 | (longopts): Add --help, --version. | Paul Eggert | |
(main): Use longopts rather than parse_long_options. Don't include "long-options.h". | |||
2004-09-21 | (longopts): Add --help, --version. | Paul Eggert | |
(main): Use longopts rather than parse_long_options. (main): Don't reorder arguments, so that we can check weird file names. | |||
2004-09-21 | Remove unused "case 0". | Paul Eggert | |
(long_opts): Standardize on NULL vs 0. | |||
2004-09-21 | (main): Remove unused "case 0". | Paul Eggert | |
(long_options): Standardize on NULL vs 0. | |||
2004-09-21 | Remove now-unused long-options static var. | Paul Eggert | |
(main): Use getopt where it suffices, not getopt_long. | |||
2004-09-21 | (main): Use getopt where it suffices, not getopt_long. | Paul Eggert | |
2004-09-21 | Reject unknown options. | Paul Eggert | |
2004-09-21 | Reject unknown options. | Paul Eggert | |
2004-09-21 | Include <getopt.h>. | Paul Eggert | |
(main): Use getopt where it suffices, not getopt_long. | |||
2004-09-21 | Include <getopt.h>. | Paul Eggert | |
(main): Reject unknown options. | |||
2004-09-21 | Include <getopt.h>. | Paul Eggert | |
(main): Reject unknown options. | |||
2004-09-20 | (main): Don't dump core if POSIXLY_CORRECT and given no arguments. | Paul Eggert | |
2004-09-19 | (STRING_OPTION): Remove. | Paul Eggert | |
(long_options, main): Remove support for undocumented and obsolete --string option, as suggested in the 1996-09-26 patch. | |||
2004-09-19 | (STATUS_OPTION, STRING_OPTION): New enums. | Paul Eggert | |
(long_options, main): Use them instead of magic numbers 2 and 1. For --string, optarg can't possibly be NULL. | |||
2004-09-19 | (usage): Distinguish between options and operands. | Paul Eggert | |
(scanargs): Don't mess with argc, argv; getopt_long handles this now. Say "operands" for operands, not "options". (main): Use getopt_long, so that "dd --" works as POSIX requires. | |||
2004-09-19 | (main): Usage failure is EXIT_FAIL, not EXIT_FAILURE. | Paul Eggert | |
2004-09-19 | Fix typo in previous change. | Paul Eggert | |
2004-09-19 | (main): Reject unknown options instead of | Paul Eggert | |
interpreting them as a directory to chroot to. | |||
2004-09-19 | Remove obsolete comment about POSIX 1003.2/D11.2. | Paul Eggert | |
The current standard (POSIX 1003.1-2004) is correct. (crc_remainder) [defined CRCTAB]: Renamed from "remainder" to avoid collision with builtin function. (main) [defined CRCTAB]: Output in lowercase hexadecimal, and output the first 0 as 8 digits, to make it easier to compare to the text of the standard. Output crctab to be a const array. (crctab): Use result of above changes. (long_options): Remove; not needed if empty. (main): getopt_long can't return 0 here, so simplify the code. | |||
2004-09-13 | Regenerate. | Paul Eggert | |
2004-09-13 | (localedir.h): Don't redirect directly to target. | Paul Eggert | |
2004-09-13 | Adjust to backup enum rename. | Paul Eggert | |
2004-09-13 | Adjust to backup file rename. | Paul Eggert | |