summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog4
-rw-r--r--doc/lsearch.n8
2 files changed, 6 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index c025b3f..94ec977 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,8 +3,6 @@
* tests/uplevel.test: added 6.1 to test [uplevel] with shadowed
commands [Bug 524383]
-2002-08-08 Miguel Sofer <msofer@users.sourceforge.net>
-
* tests/subst.test: added 5.8-10 as further tests for [Bug 495207]
2002-08-08 Don Porter <dgp@users.sourceforge.net>
@@ -13,6 +11,8 @@
2002-08-08 Jeff Hobbs <jeffh@ActiveState.com>
+ * doc/lsearch.n: corrected lsearch docs to use -inline in examples.
+
*** 8.4b2 TAGGED FOR RELEASE ***
* tests/fCmd.test:
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