From: Bruno Haible Date: Sat, 23 Jun 2001 21:43:47 +0000 (+0000) Subject: Add missing --unique option. X-Git-Tag: v0.11~650 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0aac47642430331bc81c721db9bda2e3effd527;p=thirdparty%2Fgettext.git Add missing --unique option. --- diff --git a/src/ChangeLog b/src/ChangeLog index c0caf5ddf..dfd22bd6a 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,8 @@ +2001-06-18 Karl Eichwalder + + * msgcomm.c (long_options): Add '--unique' option as documented + within --help output. + 2001-06-12 Bruno Haible * xgettext.c (extension_to_language): Recognize "*.hh" as being C++. diff --git a/src/msgcomm.c b/src/msgcomm.c index a7c4c0948..89d2d8aba 100644 --- a/src/msgcomm.c +++ b/src/msgcomm.c @@ -83,6 +83,7 @@ static const struct option long_options[] = { "sort-by-file", no_argument, NULL, 'F' }, { "sort-output", no_argument, NULL, 's' }, { "strict", no_argument, NULL, 'S' }, + { "unique", no_argument, NULL, 'u' }, { "version", no_argument, NULL, 'V' }, { "width", required_argument, NULL, 'w', }, { "more-than", required_argument, NULL, '>', },