diff options
author | hobbs <hobbs> | 2006-05-31 23:29:28 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2006-05-31 23:29:28 (GMT) |
commit | a6b26fc718d2d7390dc34b3a580e1726e7211bff (patch) | |
tree | 3b9a2ecf4318cbb04ce17e6a410d3da7b8bc2665 /generic/tclNamesp.c | |
parent | aec2cb8f476764482a9061ea514f32ae532651a3 (diff) | |
download | tcl-a6b26fc718d2d7390dc34b3a580e1726e7211bff.zip tcl-a6b26fc718d2d7390dc34b3a580e1726e7211bff.tar.gz tcl-a6b26fc718d2d7390dc34b3a580e1726e7211bff.tar.bz2 |
* generic/tclNamesp.c (NamespaceInscopeCmd): revert [Bug 1400572]
fix of 2006-01-09 for [namespace inscope] as it seems to mess with
itcl scope decoding. Leaving namespace-29.6 test failure until
final cause it determined.
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 1d12831..9955e02 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -19,7 +19,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclNamesp.c,v 1.31.2.11 2006/01/09 18:34:17 dgp Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.31.2.12 2006/05/31 23:29:31 hobbs Exp $ */ #include "tclInt.h" @@ -3357,7 +3357,7 @@ NamespaceInscopeCmd(dummy, interp, objc, objv) Tcl_Obj *CONST objv[]; /* Argument objects. */ { Tcl_Namespace *namespacePtr; - CallFrame frame; + Tcl_CallFrame frame; int i, result; if (objc < 4) { @@ -3384,13 +3384,11 @@ NamespaceInscopeCmd(dummy, interp, objc, objv) * Make the specified namespace the current namespace. */ - result = Tcl_PushCallFrame(interp, (Tcl_CallFrame *)&frame, namespacePtr, + result = Tcl_PushCallFrame(interp, &frame, namespacePtr, /*isProcCallFrame*/ 0); if (result != TCL_OK) { return result; } - frame.objc = objc; - frame.objv = objv; /* * Execute the command. If there is just one argument, just treat it as |