diff options
author | tjr <tjr@FreeBSD.org> | 2004-08-23 12:10:44 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2004-08-23 12:10:44 +0000 |
commit | ef4abb9432cc1aafe7d102f1dad8c709ff741c86 (patch) | |
tree | 1cdd282ac4cbd23ab48932492264d7fe2a309e7a /lib/libc | |
parent | 8129fcb0bdc5eb8add690b4dfd977a915c5ee500 (diff) | |
download | FreeBSD-src-ef4abb9432cc1aafe7d102f1dad8c709ff741c86.zip FreeBSD-src-ef4abb9432cc1aafe7d102f1dad8c709ff741c86.tar.gz |
Update documentation to match reality: glob() sorts its result according
to the current LC_COLLATE setting, not in "ASCII order".
PR: 54391
MFC after: 1 week
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/glob.3 | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/gen/glob.3 b/lib/libc/gen/glob.3 index 34e8294..8b80e1c 100644 --- a/lib/libc/gen/glob.3 +++ b/lib/libc/gen/glob.3 @@ -34,7 +34,7 @@ .\" @(#)glob.3 8.3 (Berkeley) 4/16/94 .\" $FreeBSD$ .\" -.Dd July 18, 2004 +.Dd August 23, 2004 .Dt GLOB 3 .Os .Sh NAME @@ -197,9 +197,9 @@ If .Dv GLOB_NOESCAPE is set, backslash escaping is disabled. .It Dv GLOB_NOSORT -By default, the pathnames are sorted in ascending -.Tn ASCII -order; +By default, the pathnames are sorted in ascending order +according to the current setting of +.Ev LC_COLLATE ; this flag prevents that sorting (speeding up .Fn glob ) . .El |