diff options
author | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-23 13:38:21 (GMT) |
---|---|---|
committer | Miguel Sofer <miguel.sofer@gmail.com> | 2008-07-23 13:38:21 (GMT) |
commit | 16253514a3a86502bec2e5b592f4c0789641535d (patch) | |
tree | 24a17ca53effea9d26a45f921a8f92b2753bca84 /generic/tclBasic.c | |
parent | a4c31dcffa6781cf45a97ec8ea576c9b0b914c04 (diff) | |
download | tcl-16253514a3a86502bec2e5b592f4c0789641535d.zip tcl-16253514a3a86502bec2e5b592f4c0789641535d.tar.gz tcl-16253514a3a86502bec2e5b592f4c0789641535d.tar.bz2 |
* generic/tclBasic.c (GetCommandSource): added comment with
explanation and warning for waintainers.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 0e77315..1730097 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,7 @@ * See the file "license.terms" for information on usage and redistribution of * this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclBasic.c,v 1.328 2008/07/22 22:46:46 andreas_kupries Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.329 2008/07/23 13:38:22 msofer Exp $ */ #include "tclInt.h" @@ -3160,6 +3160,14 @@ CancelEvalProc(clientData, interp, code) * command. This insures that traces get a correct NUL-terminated command * string. The Tcl_Obj has refCount==1. * + * *** MAINTAINER WARNING *** + * The returned Tcl_Obj is all wrong for any purpose but getting the + * source string for an objc/objv command line in the stringRep (no + * stringRep if no source is available) and the corresponding substituted + * version in the List intrep. + * This means that the intRep and stringRep DO NOT COINCIDE! Using these + * Tcl_Objs normally is likely to break things. + * *---------------------------------------------------------------------- */ |