diff options
author | Pádraig Brady <P@draigBrady.com> | 2009-05-05 12:00:15 +0100 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2009-05-05 17:14:51 +0100 |
commit | a6c9dd74d8083b27ca8db78791b9d6e7ba6d4478 (patch) | |
tree | bd59a6063967f8d555fff6b6777669786d0abbeb /doc | |
parent | 8d00fb26f1bd5847f8e1318fdb99c8ef256dbece (diff) | |
download | coreutils-a6c9dd74d8083b27ca8db78791b9d6e7ba6d4478.tar.xz |
doc: note the use of LC_COLLATE in comm, join and uniq
* doc/coreutils.texi (uniq invocation): Simplify the
text to remove the inconsequential mentioning of order,
while implying that LC_COLLATE can alter equality comparisons.
* src/comm.c (usage): Mention LC_COLLATE is significant.
* src/join.c (usage): Ditto.
* src/uniq.c (usage): Ditto. Also improve the summary.
Suggestion from Andries Brouwer
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi index 918f44e5a..b96fdb202 100644 --- a/doc/coreutils.texi +++ b/doc/coreutils.texi @@ -4406,8 +4406,8 @@ duplicate lines, perhaps you want to use @code{sort -u}. @xref{sort invocation}. @vindex LC_COLLATE -Comparisons use the character collating sequence specified by the -@env{LC_COLLATE} locale category. +Comparisons honor the rules specified by the @env{LC_COLLATE} +locale category. If no @var{output} file is specified, @command{uniq} writes to standard output. |