summaryrefslogtreecommitdiffstats
path: root/generic/tclCmdMZ.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2002-04-18 13:49:30 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2002-04-18 13:49:30 (GMT)
commit85e2515f134ae9dee84eaab360465cc92116796f (patch)
tree63c60de2e22e0b8f825bd1291f28c908e299356f /generic/tclCmdMZ.c
parent1b9f7ed6c59cd402cd53aee313010d341a5420be (diff)
downloadtcl-85e2515f134ae9dee84eaab360465cc92116796f.zip
tcl-85e2515f134ae9dee84eaab360465cc92116796f.tar.gz
tcl-85e2515f134ae9dee84eaab360465cc92116796f.tar.bz2
Partial resolution of Bug #536831; the comment is a bit clearer!
Diffstat (limited to 'generic/tclCmdMZ.c')
-rw-r--r--generic/tclCmdMZ.c12
1 files changed, 10 insertions, 2 deletions
diff --git a/generic/tclCmdMZ.c b/generic/tclCmdMZ.c
index 63da4d3..0f39ecb 100644
--- a/generic/tclCmdMZ.c
+++ b/generic/tclCmdMZ.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclCmdMZ.c,v 1.66 2002/04/05 19:26:35 dgp Exp $
+ * RCS: @(#) $Id: tclCmdMZ.c,v 1.67 2002/04/18 13:49:30 dkf Exp $
*/
#include "tclInt.h"
@@ -2445,7 +2445,15 @@ Tcl_SubstObjCmd(dummy, interp, objc, objv)
* implementation by Andrew Payne. Note that if a command
* substitution returns TCL_CONTINUE or TCL_RETURN from its
* evaluation and is not completely well-formed, the results are
- * not defined.
+ * not defined (or at least hard to characterise.) This fault
+ * will be fixed at some point, but the cost of the only sane
+ * fix (well-formedness check first) is such that you need to
+ * "precompile and cache" to stop everyone from being hit with
+ * the consequences every time through. Note that the current
+ * behaviour is not a security hole; it just restarts parsing
+ * the string following the substitution in a mildly surprising
+ * place, and it is a very bad idea to count on this remaining
+ * the same in future...
*
* Results:
* A Tcl_Obj* containing the substituted string, or NULL to