From: Jim Meyering Date: Thu, 9 Jan 2003 20:39:04 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v4.5.5~292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=07a2a5a4be511ac3b730742bc30bb26d4eda944b;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index db6a8dce7a..5b0788603d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,34 @@ * Version 4.5.5. + * README: Add readlink. + +2002-08-27 Dmitry V. Levin + + New program: readlink. + + * src/Makefile.am (bin_PROGRAMS): Add readlink. + * src/readlink.c: New file. + + * man/Makefile.am: Add readlink. + * man/readlink.x: New file. + +2003-01-09 Jim Meyering + + When selecting ranges of byte offsets (as opposed to ranges of fields) + and when --output-delimiter=STRING is specified, output STRING between + ranges of selected bytes. + * src/cut.c (RANGE_START_SENTINEL): Define. + (output_delimiter_specified): New global. + (print_kth): Add parameter. Adjust all callers. + (set_fields): Mark each range-start index with RANGE_START_SENTINEL. + (cut_bytes): When requested, output STRING between ranges of + selected bytes. + (main): Make a diagnostic a little clearer. + Based on a patch from Jan Nieuwenhuizen. + + * tests/cut/Test.pm: New tests for the above. + * src/cut.c (set_fields): Make code agree with comment: Don't merge abutting ranges like 4- and 2-3. This makes no difference currently, but is required to support an upcoming change.