diff options
author | dkf <dkf@noemail.net> | 2002-10-03 13:08:53 (GMT) |
---|---|---|
committer | dkf <dkf@noemail.net> | 2002-10-03 13:08:53 (GMT) |
commit | 2462052b918855f746fa9a4c58594564b75d9fb6 (patch) | |
tree | 66ab36a545c8c9e5f5a9404a0d4a2e43c21eb8a6 /doc/lsearch.n | |
parent | d8c8154604d8c19fdc89750efb214069680fbe69 (diff) | |
download | tcl-2462052b918855f746fa9a4c58594564b75d9fb6.zip tcl-2462052b918855f746fa9a4c58594564b75d9fb6.tar.gz tcl-2462052b918855f746fa9a4c58594564b75d9fb6.tar.bz2 |
Improved [lsearch] docs; -sorted interaction with other options. [Bug 617816]
FossilOrigin-Name: ac5d42b84b04c0822c4faed0e16a22a4b7780481
Diffstat (limited to 'doc/lsearch.n')
-rw-r--r-- | doc/lsearch.n | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/doc/lsearch.n b/doc/lsearch.n index 2a881d3..77482bf 100644 --- a/doc/lsearch.n +++ b/doc/lsearch.n @@ -6,7 +6,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: lsearch.n,v 1.12 2002/08/08 22:11:13 hobbs Exp $ +'\" RCS: @(#) $Id: lsearch.n,v 1.13 2002/10/03 13:08:55 dkf Exp $ '\" .so man.macros .TH lsearch n 8.4 Tcl "Tcl Built-In Commands" @@ -91,8 +91,9 @@ The list elements are in sorted order. If this option is specified, \fBlsearch\fR will use a more efficient searching algorithm to search \fIlist\fR. If no other options are specified, \fIlist\fR is assumed to be sorted in increasing order, and to contain ASCII strings. This -option cannot be used with \fB\-all\fR, \fB\-glob\fR, \fB\-not\fR or -\fB\-regexp\fR. +option is mutually exclusive with \fB\-glob\fR and \fB\-regexp\fR, and +is treated exactly like \fB-exact\fR when either \fB\-all\fR, or +\fB\-not\fR is specified. .TP \fB\-start\fR \fIindex\fR .VS 8.4 |