summaryrefslogtreecommitdiff
path: root/src/dircolors.c
AgeCommit message (Collapse)Author
1998-07-05(parse_line): Add casts to avoid errors from Irix4's `cc' C compiler.Jim Meyering
From Kaveh Ghazi.
1998-06-29revert back to using lower case _unlocked wrapper namesJim Meyering
1998-06-29Change all uses of unlocked-wrapped functions to their upper case wrapper names.Jim Meyering
1998-04-28(parse_line): Use ISSPACE, not isspace.Jim Meyering
Use unsigned char * pointers, not potentially signed ones, to avoid sign extension.
1998-04-14Use STREQ in string equality tests, not strcmp.Jim Meyering
1998-03-15Use #if, not #ifdef with HAVE_ macros.Jim Meyering
Use #if !, not #ifndef with HAVE_ macros.
1998-01-04(main, usage): Check for write error to stdout before exiting.Jim Meyering
Include "closeout.h".
1997-10-23Remove free and malloc decls.Jim Meyering
1997-10-07update bug-reporting addressJim Meyering
1997-08-31[!STDC_HEADERS]: Declare malloc.Jim Meyering
1997-05-27Use base_name, not basename.Jim Meyering
1997-02-09update copyrights for 1997Jim Meyering
1997-02-02[obstack_chunk_alloc]: Define to malloc, not xmallocJim Meyering
to work better with new obstack functions.
1997-02-01bracket bug address with <> and append a periodJim Meyering
1997-02-01Compare getopt_long return value against -1, not EOF. Use NULL, not '(int ↵Jim Meyering
*) 0' as last parameter in getopt_long call.
1997-01-26Revert last change. With obstack, dcl of free is *required*.Jim Meyering
1997-01-15[!STDC_HEADERS]: Remove unnecessary declaration of free.Jim Meyering
1996-12-19(usage): Remove --print-data-base.Jim Meyering
Now only --print-database remains. Although it wasn't documented, --print-data-base was still accepted. But it made `--p', `--print', `--print-data', etc. ambiguous.
1996-11-03change bug-reporting addressJim Meyering
1996-11-02change bug-reporting addressJim Meyering
1996-10-05(main): update --version output to conform to coding standardJim Meyering
1996-10-03(usage): Deprecate --print-data-base even thoughJim Meyering
that's the way GNU make writes it. `database' is one word. Add description of FILE argument.
1996-09-21(xstrndup): Use message that's the same as the oneJim Meyering
you get from e.g., xmalloc. Reported by Santiago Vila.
1996-09-08(usage): Refer to LS_COLORS, not LS_COLOR.Jim Meyering
From Santiago Vila Doncel.
1996-08-31(usage): remove spurious trailing \n in puts.Jim Meyering
1996-08-29(usage): Tell where to report bugs.Jim Meyering
1996-07-25(usage): Remove -h. It is not an option.Jim Meyering
Reported by Ulrich Drepper.
1996-07-14(long_options): Add missing last line of NULLJim Meyering
entries. From Ralph Loader <loader@maths.ox.ac.uk>.
1996-07-10(usage): Fix parentheses.Jim Meyering
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-06[!STDC_HEADERS]: Declare free. From Marcus Daniels.Jim Meyering
1996-07-03Include sys/types.h before system.h.Jim Meyering
From Jim Blandy (jimb@cyclic.com).
1996-06-29(dc_parse_stream): Move enum states dcl into this function.Jim Meyering
(dc_parse_stream): Remove parameter RESULT. Adapt callers.
1996-06-25(dc_parse_stream): Give `unrecognized keyword' for misspelledJim Meyering
`TERM' keyword as well as for others.
1996-06-25(dc_parse_stream): Remove spurious newline in error message.Jim Meyering
(dc_parse_file): Remove erroneous test of ERR.
1996-06-24Use an obstack to accumulate value of LS_COLORS.Jim Meyering
1996-06-23* (parse_line): Rewrite to avoid modifying LINE.Jim Meyering
Put LINE first in parameter list. Adjust caller. (dc_parse_stream): Free KEYWD and ARG. (main): Give diagnostic for unreasonable combinations of options/arguments.
1996-06-22(main): New option --print (-p).Jim Meyering
Detect write failure. Add --bourne-shell and --c-shell aliases for --sh and --csh resp.
1996-06-22Major overhaul. No longer read from /etc/DIR_COLORS or from ~/.dircolors.Jim Meyering
Defaults are now compiled in. If you specify a file on the command line, it is used instead of the compiled-in defaults.
1996-06-02Rename MO_ to SHELLTYPE_.Jim Meyering
1996-05-29.Jim Meyering
1996-05-28.Jim Meyering
1996-05-23.Jim Meyering
1996-05-23FIXME: fill this inJim Meyering
1996-05-19Tweak indentation.Jim Meyering
1996-05-06(main): Use fputs, not puts. Avoids spurious newline.Jim Meyering