summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
1996-07-19(main): Initialize for internationalized message support:Jim Meyering
call setlocale, bindtextdomain, and textdomain. Reported by Michel Robitaille <robitail@IRO.UMontreal.CA>.
1996-07-18Include <sys/types.h> before system.h.Jim Meyering
1996-07-18Include <sys/types.h> before system.h.Jim Meyering
1996-07-18Include <sys/types.h> before system.h.Jim Meyering
1996-07-17(OFF_T_MAX): Remove definition.Jim Meyering
(main): Compare against LONG_MAX rather than OFF_T_MAX.
1996-07-16[OFF_T_MAX]: Use `(unsigned long)1' rather than `(off_t)1'Jim Meyering
so the left operand of the << isn't signed. From Kaveh Ghazi.
1996-07-16(print_uptime): Reverse `days' and `day' in uptime message.Jim Meyering
From Kaveh R. Ghazi.
1996-07-15(print_uptime): Use 0, not undefined errno inJim Meyering
couldn't-get-boot-time diagnostic. From Ulrich Drepper.
1996-07-14[HAVE_LIMITS_H]: Include limits.h for INT_MAX.Jim Meyering
[!INT_MAX]: Define it. (main): Append INT_MAX to command-line-specified tab list to ensure termination in unexpand's inner loop. Derived from a patch from Keith Owens.
1996-07-14(unexpand): Fix bug that contributed to endless loopJim Meyering
when invoking `echo ' ' |unexpand -t 1,2': use print_tab_index, not tab_index in inner flush_pend: while loop. From Keith Owens <kaos@audio.apana.org.au>.
1996-07-14(usage): Sort option descriptions in dictionary order.Jim Meyering
1996-07-14(long_options): Add missing last line of NULLJim Meyering
entries. From Ralph Loader <loader@maths.ox.ac.uk>.
1996-07-14(usage): Add a `\' after `\n' in usage message.Jim Meyering
Otherwise, SunOS's /bin/cc chokes.
1996-07-13[GWINSZ_BROKEN]: Remove thus-guarded `#undef TIOCGWINSZ'.Jim Meyering
GWINSZ_BROKEN can't be defined anymore.
1996-07-10(usage): Fix parentheses.Jim Meyering
1996-07-10(UID_T_MAX): Use `(unsigned long)1' rather thanJim Meyering
`(uid_t)1' to avoid problems on systems where uid_t is signed. (GID_T_MAX): Likewise for gid_t. From Kjetil Torgrim Homme <kjetilho@ifi.uio.no>.
1996-07-10(long_options): Add print-data-base and print-database.Jim Meyering
(usage): Rearrange option descriptions.
1996-07-10.Jim Meyering
1996-07-10(usage): Add a one-line description to --help message.Jim Meyering
From Karl Berry.
1996-07-10Change C-shell to `C shell'.Jim Meyering
1996-07-10(dc_parse_stream): Don't give `unrecognized keyword'Jim Meyering
message unless we've processed a matching TERM directive.
1996-07-10(MAXCOST): Use `(unsigned long)1' rather than `(COST)1'Jim Meyering
so the left operand of the << isn't signed. From Kjetil Torgrim Homme.
1996-07-08Make initial colors for `color_indicator' match thoseJim Meyering
currently in dircolors.hin.
1996-07-08Include termios.h.Jim Meyering
Guard inclusion of sys/ioctl.h with #ifdef GWINSZ_IN_SYS_IOCTL, rather than HAVE_SYS_IOCTL_H. Modelled after sh-utils' stty.c at suggestion from Chip Bennett <BennettC@j64.stratcom.af.mil>.
1996-07-08Recognize more filename extensions. From Joshua Cowan.Jim Meyering
1996-07-06(usage): Factor out backup-related text into separate string/printf statement.Jim Meyering
1996-07-06(usage): Factor out backup-related text into separate string/printf statement.Jim Meyering
1996-07-06[!STDC_HEADERS]: Declare free. From Marcus Daniels.Jim Meyering
1996-07-05(usage): Remove space before newline in usage message.Jim Meyering
1996-07-05(usage): Remove space before newline in usage message.Jim Meyering
1996-07-05(usage): Remove space before newline in usage message.Jim Meyering
1996-07-05(usage): Remove space before newline in usage message.Jim Meyering
1996-07-05(usage): Remove space before newline in usage message.Jim Meyering
1996-07-04(split_3): Add missing semicolon. From Jim Blandy.Jim Meyering
1996-07-04(main): Fix typo in last change.Jim Meyering
1996-07-04Make `dir --version' and `vdir --version' print their names, not `ls'.Jim Meyering
Reported by Ulrich Drepper.
1996-07-04(md5_file): Replace obsolete comment with a descriptionJim Meyering
of the function. (md5_check): Don't use "s"-adding trick to form the plural of `checksum.' That doesn't work well with translation. Suggestions from Ulrich Drepper.
1996-07-04(MIN_DIGEST_LINE_LENGTH): New macro.Jim Meyering
[NEWLINE_REPLACEMENT_STRING*]: Remove macros. (main): Output a leading backslash for a line describing a file whose name contains a newline. Then translate each NEWLINE byte in the file name to the string, "\\n", and each backslash to "\\\\". File names that don't contain NEWLINE aren't translated. (split_3): Rewrite to handle file names with embedded newlines. Miles Bader and Jim Blandy suggested this new encoding scheme.
1996-07-04(split_3): Correct test for 35-byte line to accomodateJim Meyering
fact that leading blanks may be stripped.
1996-07-03Include sys/types.h before system.h.Jim Meyering
From Jim Blandy (jimb@cyclic.com).
1996-07-03[!MAXUID]: Define after inclusion of system.h to avoidJim Meyering
warning about redefinition on SunOS4, Solaris2.4 and SGI-irix5.3. From Kaveh Ghazi.
1996-07-03(usage): Add omitted \n\ at the end of a line in the usage message.Jim Meyering
1996-07-03[!EXIT_SUCCESS]: Define it.Jim Meyering
[!EXIT_FAILURE]: Define it.
1996-07-02[NEWLINE_REPLACEMENT_STRING]: Define.Jim Meyering
(split_3): Translate NL bytes not to NUL, but to NEWLINE_REPLACEMENT_STRING. Suggested by Ulrich Drepper. (main): Translate back to NL-containing filename.
1996-07-02(do_link): Update messages to ease translation.Jim Meyering
Suggestion from Santiago Vila.
1996-07-01(main): Remove now-unnecessary diagnostic about filename containing NEWLINE.Jim Meyering
1996-07-01(split_3): Take an additional parameter, S_LEN.Jim Meyering
Adapt caller. Map translated NEWLINE-containing filename back into the original NEWLINE-containing name. (md5_check): Translate NEWLINE bytes to NUL bytes in filename.
1996-06-30(usage): Fix typo, 3nd->3rd, in usage message.Jim Meyering
From Santiago Vila <sanvila@unex.es>.
1996-06-29Remove u from Colour.Jim Meyering
1996-06-29(dc_parse_stream): Move enum states dcl into this function.Jim Meyering
(dc_parse_stream): Remove parameter RESULT. Adapt callers.