Age | Commit message (Collapse) | Author | |
---|---|---|---|
2001-12-01 | Rename just-added macros. Here are the new names: | Jim Meyering | |
HELP_OPTION_DESCRIPTION VERSION_OPTION_DESCRIPTION | |||
2001-12-01 | (EMIT_HELP_DESCRIPTION): New macro. | Jim Meyering | |
(EMIT_VERSION_DESCRIPTION): New macro. | |||
2001-12-01 | (usage): Use new macros, EMIT_HELP_DESCRIPTION and EMIT_VERSION_DESCRIPTION | Jim Meyering | |
instead of hard-coding --help and --version descriptions. | |||
2001-11-27 | The change of 2001-11-01 introduced a bug whereby some recursive | Jim Meyering | |
listings didn't have a blank line between per-directory groups of files. (print_dir): Print a newline before each directory name except the first one, rather than after each except the last, since now (after the changes of 2001-11-01) detecting whether a `pending*' is the last would involve more work. Reported by Andreas Schwab. This change has no net effect. (main): Remove always-true conjunct and add a comment. | |||
2001-11-27 | (SET_MODE) [O_BINARY]: Call setmode, not set_mode. | Jim Meyering | |
2001-11-26 | Don't include "gtod.h" | Jim Meyering | |
(main): Don't `call' GETTIMEOFDAY_INIT. | |||
2001-11-26 | (cat): Don't test whether the full_write return value (of type size_t) | Jim Meyering | |
is less than 0. Reported by Nelson H. F. Beebe, as a warning from Irix 6.5's C compiler. | |||
2001-11-26 | *** empty log message *** | Jim Meyering | |
2001-11-25 | (usage): Indent --help and --version strings to start in the 7th column. | Jim Meyering | |
2001-11-25 | (usage): Indent --help and --version strings to start in the 7th column. | Jim Meyering | |
2001-11-24 | (usage): Make --help and --version strings start in column 7. | Jim Meyering | |
2001-11-23 | (usage): Note that ``Mandatory arguments to long options are mandatory | Jim Meyering | |
for short options too.'' | |||
2001-11-23 | (usage): Use `output', not `print' in description of | Jim Meyering | |
the --version option, so this message is consistent with all the rest. | |||
2001-11-23 | Split usage strings so that --help and --version | Jim Meyering | |
descriptions are alone in their own string. | |||
2001-11-23 | Factor out some common strings to make translation easier. | Jim Meyering | |
Split usage strings so that --help and --version descriptions are alone in their own string. Likewise for the one that says: Mandatory arguments to long options are mandatory for short options too. | |||
2001-11-23 | (main): Don't split string in the middle of sentence. | Jim Meyering | |
2001-11-23 | (usage): Split --help output into smaller pieces. | Jim Meyering | |
Use fputs, not printf. | |||
2001-11-23 | Use opaque type, Hash_table, not `struct hash_table'. | Jim Meyering | |
2001-11-22 | (cp_option_init): Likewise. | Jim Meyering | |
(do_copy): Call src_info_init. | |||
2001-11-22 | (cp_option_init): Initialize new member. | Jim Meyering | |
2001-11-22 | (struct cp_options) [src_info]: New member. | Jim Meyering | |
(src_info_init): Declare. | |||
2001-11-22 | (triple_hash_no_name): New function. | Jim Meyering | |
(src_info_init): New function. (copy_internal): Warn and return early for the second and subsequent occurrences of the same source file named on the command line. | |||
2001-11-22 | (seen_file): Change type of `stats' parameter to pointer. | Jim Meyering | |
(copy_internal): Update caller. | |||
2001-11-22 | (struct F_triple): Rename from dest_info. | Jim Meyering | |
(seen_file): Rename from seen_dest. Rename parameters accordingly. (record_file): Rename from record_dest. Rename parameters accordingly. (triple_hash): Rename from dest_info_hash. (triple_compare): Rename from dest_info_compare. (triple_free): Rename from dest_info_free. | |||
2001-11-22 | (main): Add a literal format string to suppress | Jim Meyering | |
a warning from gcc's -Wformat-security. | |||
2001-11-22 | (cp_option_init): Initialize new member. | Jim Meyering | |
(do_copy): Remove const attribute from declaration of parameter, x. dest_info_init now takes a parameter. | |||
2001-11-22 | (cp_option_init): Initialize new member. | Jim Meyering | |
(main): dest_info_init now takes a parameter. | |||
2001-11-22 | (cp_option_init): Initialize new member. | Jim Meyering | |
(main): dest_info_init now takes a parameter. | |||
2001-11-22 | Include hash.h. | Jim Meyering | |
(struct cp_options) [dest_info]: New member. | |||
2001-11-22 | copy.c shouldn't maintain static state. | Jim Meyering | |
(dest_info): Remove declaration of file-scoped global. (dest_info_init): Require a parameter. Update all callers. (seen_dest): Require a hash table parameter. Update callers. (record_dest): Likewise. | |||
2001-11-22 | csplit could get a failed assertion: printf 'a\n\n'|csplit - '/^$/' 2 | Jim Meyering | |
No longer include assert.h. (process_line_count): Remove invalid assertion. | |||
2001-11-20 | remove FIXME comment about duplicate code | Jim Meyering | |
2001-11-19 | (xlseek): New function. | Jim Meyering | |
Call it instead of lseek, in most cases, so any failure is reported. | |||
2001-11-17 | (tail_forever): Add a cast. | Jim Meyering | |
2001-11-17 | Remove `unsigned' attribute from type of global `prefix'. | Jim Meyering | |
(copy_rest): Cast to (unsigned char *) before dereferencing. (get_prefix): Likewise. | |||
2001-11-14 | (file_lines): Remove unnecessary cast. | Jim Meyering | |
(tail_lines): Could have called file_lines even though the first lseek failed. Fix that. | |||
2001-11-13 | split a line that was too long | Jim Meyering | |
2001-11-13 | (file_lines): Add a parameter, start_pos. | Jim Meyering | |
Work properly even when the read pointer is not at beginning of file. (tail_lines): Call file_lines for any regular file, as long as lseek can be used to seek to its end, not just when the initial read pointer is at beginning of file. | |||
2001-11-13 | (tail_lines): Move declaration of local `length' into scope where it's used. | Jim Meyering | |
(tail_file): Likewise for local `stats'. | |||
2001-11-13 | `tail /proc/ksyms' would segfault on Linux. | Jim Meyering | |
(tail_lines): Use status of lseek (...SEEK_END) call in deciding whether to call file_lines or pipe_lines. From Herbert Xu. | |||
2001-11-11 | (usage): Split --help output into smaller pieces. | Jim Meyering | |
Use fputs, not printf. | |||
2001-11-11 | (usage): Split --help output into smaller pieces. | Jim Meyering | |
2001-11-11 | (struct tspec): Declare function pointer with prototype. | Jim Meyering | |
2001-11-11 | (main): Declare function pointer with prototype. | Jim Meyering | |
2001-11-11 | (usage): Fix typo in last change to usage. | Jim Meyering | |
2001-11-11 | (count_items): Mark parameter as unused. | Jim Meyering | |
2001-11-11 | (struct_month_cmp): Guard definition with the same | Jim Meyering | |
cpp directive that guards the use. | |||
2001-11-11 | (xwrite): Remove assertion that size_t N >= 0. | Jim Meyering | |
2001-11-11 | (usage): Split --help output into smaller pieces. | Jim Meyering | |
Use fputs, not printf. | |||
2001-11-11 | (usage): Split --help output into smaller pieces. | Jim Meyering | |
Use fputs, not printf. |