diff options
author | hobbs <hobbs> | 2002-08-08 22:11:13 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2002-08-08 22:11:13 (GMT) |
commit | fa14cf27a333d8ca01bfae92f6f48feedcad040e (patch) | |
tree | 3bfe37242308aea4797115038c35c6ff288c72f5 /doc | |
parent | ecb5cdd2488039a5098ff1616c80ae5bd51d1e08 (diff) | |
download | tcl-fa14cf27a333d8ca01bfae92f6f48feedcad040e.zip tcl-fa14cf27a333d8ca01bfae92f6f48feedcad040e.tar.gz tcl-fa14cf27a333d8ca01bfae92f6f48feedcad040e.tar.bz2 |
corrected lsearch docs to use -inline in examples
Diffstat (limited to 'doc')
-rw-r--r-- | doc/lsearch.n | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lsearch.n b/doc/lsearch.n index 07d78b2..2a881d3 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.11 2002/07/01 18:24:39 jenglish Exp $ +'\" RCS: @(#) $Id: lsearch.n,v 1.12 2002/08/08 22:11:13 hobbs Exp $ '\" .so man.macros .TH lsearch n 8.4 Tcl "Tcl Built-In Commands" @@ -116,9 +116,9 @@ precedence. .CS lsearch {a b c d e} c => 2 lsearch -all {a b c a b c} c => 2 5 -lsearch -data {a20 b35 c47} b* => b35 -lsearch -data -not {a20 b35 c47} b* => a20 -lsearch -all -data -not {a20 b35 c47} b* => a20 c47 +lsearch -inline {a20 b35 c47} b* => b35 +lsearch -inline -not {a20 b35 c47} b* => a20 +lsearch -all -inline -not {a20 b35 c47} b* => a20 c47 lsearch -all -not {a20 b35 c47} b* => 0 2 lsearch -start 3 {a b c a b c} c => 5 .CE |