From: Jim Meyering Date: Wed, 14 May 2003 08:05:49 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: v5.0.1~485 X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=88e00a1d3b81ff651a3c69238e296b38c9f46aa8;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/ChangeLog b/ChangeLog index 3e7668dca2..d7d4d9a270 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,23 @@ +2003-05-14 Jim Meyering + + * Makefile.maint (syntax-check): Add another check. + +2003-05-13 Paul Eggert + + Fix uniq to conform to POSIX, which requires that "uniq -d -u" + must output nothing. Problem reported by Josh Hyman. + + * src/uniq.c (enum output_mode, mode): Remove, replacing with: + (output_unique, output_first_repeated, output_later_repeated): + New vars. All uses of "mode" changed to use these variables, + which are not mutually exclusive as "mode" was. + (writeline): New arg "match", used to control whether to + obey output_first_repeated or output_later_repeated. + All callers changed. + (check_file, main): Adjust to above changes. + + * tests/uniq/Test.pm: Test that 'uniq -d -u' outputs nothing. + 2003-05-14 Jim Meyering * Version 5.0.1.