summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2006-12-14 10:22:02 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2006-12-14 10:22:02 (GMT)
commit693ea2aafd0c56689cc2b3a247e8baa29daa7b5a (patch)
treec1424514d4e8feb3fa265966f83d9e28b528fec2
parent9d89af8419103027284fb87c4c5254a3e6ab1395 (diff)
downloadtcl-693ea2aafd0c56689cc2b3a247e8baa29daa7b5a.zip
tcl-693ea2aafd0c56689cc2b3a247e8baa29daa7b5a.tar.gz
tcl-693ea2aafd0c56689cc2b3a247e8baa29daa7b5a.tar.bz2
Fix example. [Bug 1615277]
-rw-r--r--ChangeLog30
-rw-r--r--doc/string.n4
2 files changed, 19 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index d16daef..14f5e2f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,15 +1,19 @@
+2006-12-14 Donal K. Fellows <donal.k.fellows@manchester.ac.uk>
+
+ * doc/string.n: Fix example. [Bug 1615277]
+
2006-12-12 Don Porter <dgp@users.sourceforge.net>
- * generic/tclCompExpr.c: Now that the new internal structs
- are in use to support operator commands, might as well make them
- the default for [expr] as well and avoid passing every parsed
- expression through the inefficient Tcl_Token array format. This
- addresses most issues in [RFE 1517602] Assuming no performance
- disasters result from this, much dead code supporting the other
- implementation might now be removed.
+ * generic/tclCompExpr.c: Now that the new internal structs are
+ in use to support operator commands, might as well make them the
+ default for [expr] as well and avoid passing every parsed expression
+ through the inefficient Tcl_Token array format. This addresses most
+ issues in [RFE 1517602]. Assuming no performance disasters result from
+ this, much dead code supporting the other implementation might now be
+ removed.
* generic/tclBasic.c: Final step routing all direct evaluation forms
- * generic/tclCompExpr.c: of the operator commands through TEBC,
+ * generic/tclCompExpr.c: of the operator commands through TEBC,
* generic/tclCompile.h: dropping all the routines in tclMathOp.c.
* generic/tclMathOp.c: Still needs Engineering Manual attention.
@@ -24,14 +28,14 @@
* generic/tclBasic.c: Another step down the path of re-using
* generic/tclCompExpr.c: TclExecuteByteCode to implement the TIP 174
* generic/tclCompile.h: commands instead of using a mass of code
- * generic/tclMathOp.c: duplication. Now all operator commands that
+ * generic/tclMathOp.c: duplication. Now all operator commands that
* tests/mathop.test: demand exactly one operation are implemented
via TclSingleOpCmd and a call to TEBC.
- * generic/tclCompExpr.c: Revised implementation of TclInvertOpCmd
- * generic/tclMathOp.c: to perform a bytecode compile / execute
- sequence. This demonstrates a path toward avoiding mountains of
- code duplication in tclMathOp.c and tclExecute.c.
+ * generic/tclCompExpr.c: Revised implementation of TclInvertOpCmd to
+ * generic/tclMathOp.c: perform a bytecode compile / execute sequence.
+ This demonstrates a path toward avoiding mountains of code duplication
+ in tclMathOp.c and tclExecute.c.
* generic/tclCompile.h: Change TclExecuteByteCode() from static to
* generic/tclExecute.c: MODULE_SCOPE so all files including
diff --git a/doc/string.n b/doc/string.n
index 1e174c1..302f59e 100644
--- a/doc/string.n
+++ b/doc/string.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: string.n,v 1.32 2006/11/22 23:22:23 dkf Exp $
+'\" RCS: @(#) $Id: string.n,v 1.33 2006/12/14 10:22:03 dkf Exp $
'\"
.so man.macros
.TH string n 8.1 Tcl "Tcl Built-In Commands"
@@ -356,7 +356,7 @@ set length [\fBstring length\fR $string]
if {$length == 0} {
set isPrefix 0
} else {
- set isPrefix [\fBstring equal\fR -length $string $string "foobar"]
+ set isPrefix [\fBstring equal\fR -length $length $string "foobar"]
}
.CE