summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1999-08-30(usage): Correct --help message.Jim Meyering
1999-08-30(usage): Correct --help message.Jim Meyering
1999-08-30(usage): Correct --help message.Jim Meyering
1999-08-30(usage): Correct --help message.Jim Meyering
1999-08-30(usage): Correct --help message.Jim Meyering
1999-08-30(usage): Correct --help message.Jim Meyering
1999-08-29(main): Call exit explicitly to avoid warning from gcc.Jim Meyering
Include "xstrtol.h". (isinteger): Remove function and prototype. (main): Use xstrtol in place of atoi. Remove associated FIXME comments.
1999-08-29(isinteger): Move definition to precede use. Remove prototype.Jim Meyering
1999-08-29(main): Call exit explicitly to avoid warning from gcc.Jim Meyering
1999-08-29(main): Call exit explicitly to avoid warning from gcc.Jim Meyering
1999-08-22(detect_loop): There's no loop if k->top is NULL.Jim Meyering
1999-08-22tweak commentJim Meyering
1999-08-22(check_file): Explain why we have separate `if' and `else'Jim Meyering
blocks when the code in the else block could handle both cases.
1999-08-22(check_file): Generate each line of output earlier,Jim Meyering
when possible. It is possible when using none of these options: --count, -repeated, --all-repeated, --unique. Based on a patch from Ian Turner. (check_file): Move declarations of local variables into the scopes where used. (min): Remove macro definition. (different): Use MIN, not min. (SWAP_LINES): New macro. (check_file): Use it here.
1999-08-22(ATTRIBUTE_NORETURN): Define.Jim Meyering
1999-08-22Use ATTRIBUTE_NORETURN instead of NO_RETURN_ATTRIBUTE.Jim Meyering
1999-08-22(run_shell): Declare with noreturn attribute.Jim Meyering
Use an explicit exit(1) rather than doing that through error.
1999-08-22(main): Rename locals i and j.Jim Meyering
Use IF_LINT macro instead of #ifdef lint...
1999-08-22(validate_path): Use IF_LINT macro instead of #ifdef lint.Jim Meyering
1999-08-22(batch_convert): Use IF_LINT macro instead of #ifdef lint.Jim Meyering
1999-08-22(dump): Use IF_LINT macro instead of #ifdef lint...Jim Meyering
(main): Likewise.
1999-08-22(paste_parallel): Use IF_LINT macro instead of #ifdef lint...Jim Meyering
1999-08-22(read_line): Use IF_LINT macro instead of #ifdef lint...Jim Meyering
1999-08-22(checkfp): Use IF_LINT macro instead of #ifdef lint...Jim Meyering
(mergefps): Likewise.
1999-08-22(usage): Correct bug-reporting email address.Jim Meyering
(tsort): Remove trailing `\n' in error format.
1999-08-22(IF_LINT): Define new macro.Jim Meyering
1999-08-22(md5_check): Remove trailing `\n' in error format.Jim Meyering
1999-08-22(SWAP_LINES): New macro.Jim Meyering
(check_file): Use it here. [really remove min macro, this time]
1999-08-22(writeline): Constify a char*.Jim Meyering
1999-08-22(cksum): Constify a char*.Jim Meyering
1999-08-22(parse_integer): Add `const' to char* parameter andJim Meyering
add a separate `suffix' variable.
1999-08-22(check_file): Move declarations of local variablesJim Meyering
into the scopes where they're used. (min): Remove macro definition. (different): Use MIN, not min.
1999-08-21(usage): Remove the ` [-v]' from the Usage: line.Jim Meyering
1999-08-20(usage): Tweak --help output to make it more consistent with that of chgrp.Jim Meyering
1999-08-20(usage): Tweak --help output to make it more consistent with that of chown.Jim Meyering
1999-08-16This change is nearly identical to the chown.c change of 1998-05-24Jim Meyering
Accept new option, --dereference. --no-dereference is now the default. Include lchown.h. (enum Change_status) [CH_NOT_APPLIED]: New member. (change_symlinks): Enable this by default, now. (describe_change): Handle new case. (change_file_group): Add new parameter: cmdline_arg. Update callers. Reorganize to reflect changed semantics. (LCHOWN): Remove definitions. From Bruno Haible.
1999-08-16(groupname): Declare to be `const'.Jim Meyering
(change_dir_owner): Declare statp parameter to be `const'. (usage): Make the output be more consistent with that from chgrp.
1999-08-15(ENOSYS): Define to a bogus value if not already defined.Jim Meyering
(parse_options): Warn if --pid=PID is used and kill() returns ENOSYS (e.g. when compiled with DJGPP).
1999-08-10(usage): Add ls --quoting-style=locale.Jim Meyering
1999-08-08(usage): Clarify description of --time=WORD.Jim Meyering
1999-08-08(count_entry): Remove cast of savedir arg.Jim Meyering
1999-08-08(copy_dir): Remove cast of savedir arg.Jim Meyering
1999-08-08(change_dir_owner): Remove cast of savedir arg.Jim Meyering
1999-08-08(change_dir_mode): Remove cast of savedir arg.Jim Meyering
1999-08-08(change_dir_group): Remove cast of savedir arg.Jim Meyering
1999-08-06(Follow_mode): Remove comma at end of enumerator list.Jim Meyering
Reported by Kaveh Ghazi.
1999-08-06Honor --help and --version once again, though nowJim Meyering
only if POSIXLY_CORRECT is set.
1999-08-06Include file name in `write error' diagnostics.Jim Meyering
(write_bytes): Add output_file parameter and use it. Update callers. (mergefps): Likewise. (merge): Likewise. (sort): Likewise. Reported by John Summerfield.
1999-08-04*** empty log message ***Jim Meyering
1999-08-03(tail_forever): When following by name and calling recheckJim Meyering
because of exceeding max_n_consecutive_size_changes_between_opens, `continue' so we don't fall through and (assuming the file finally grew) get the erroneous `file truncated' message.