diff options
author | hobbs <hobbs@noemail.net> | 1999-08-09 16:30:34 (GMT) |
---|---|---|
committer | hobbs <hobbs@noemail.net> | 1999-08-09 16:30:34 (GMT) |
commit | 552acc6cdcb1e840df26a214b737c337768996c1 (patch) | |
tree | 2c876a8bde9c5a01f096833763979b73f6256321 /doc/array.n | |
parent | 8a2a436694d3c10e88b3a60dc6f8e7ab3b74c295 (diff) | |
download | tcl-552acc6cdcb1e840df26a214b737c337768996c1.zip tcl-552acc6cdcb1e840df26a214b737c337768996c1.tar.gz tcl-552acc6cdcb1e840df26a214b737c337768996c1.tar.bz2 |
1999-08-09 Jeff Hobbs <hobbs@scriptics.com>
* doc/Object.3: clarified Tcl_DecrRefCount docs [Bug: 1952]
* doc/array.n: clarified array pattern docs [Bug: 1330]
* doc/clock.n: fixed clock docs [Bug: 693]
* doc/lindex.n: clarified to account for new end-int behavior.
* doc/string.n: fixed formatting errors [Bug: 2188 2189]
* doc/tclvars.n: fixed doc error [Bug: 2042]
FossilOrigin-Name: 253cc387827825da08ee3ad4e82a1f53e9658f6f
Diffstat (limited to 'doc/array.n')
-rw-r--r-- | doc/array.n | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/array.n b/doc/array.n index f18c91e..42fc193 100644 --- a/doc/array.n +++ b/doc/array.n @@ -5,7 +5,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: array.n,v 1.2 1998/09/14 18:39:51 stanton Exp $ +'\" RCS: @(#) $Id: array.n,v 1.3 1999/08/09 16:30:35 hobbs Exp $ '\" .so man.macros .TH array n 7.4 Tcl "Tcl Built-In Commands" @@ -58,14 +58,14 @@ array element. The order of the pairs is undefined. If \fIpattern\fR is not specified, then all of the elements of the array are included in the result. If \fIpattern\fR is specified, then only those elements whose names -match \fIpattern\fR (using the glob-style matching rules of +match \fIpattern\fR (using the matching rules of \fBstring match\fR) are included. If \fIarrayName\fR isn't the name of an array variable, or if the array contains no elements, then an empty list is returned. .TP \fBarray names \fIarrayName\fR ?\fIpattern\fR? Returns a list containing the names of all of the elements in -the array that match \fIpattern\fR (using the glob-style matching +the array that match \fIpattern\fR (using the matching rules of \fBstring match\fR). If \fIpattern\fR is omitted then the command returns all of the element names in the array. |