diff options
author | dgp <dgp@users.sourceforge.net> | 2006-01-09 18:35:01 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2006-01-09 18:35:01 (GMT) |
commit | f0f7e492d15762d9df958a36ffd2cdf03bdce104 (patch) | |
tree | 212fe30d8afb25ada1feeb3f8276d67264540fc2 /generic | |
parent | 773be5c7cba11251f374ffc4e6f22fa0c4723d66 (diff) | |
download | tcl-f0f7e492d15762d9df958a36ffd2cdf03bdce104.zip tcl-f0f7e492d15762d9df958a36ffd2cdf03bdce104.tar.gz tcl-f0f7e492d15762d9df958a36ffd2cdf03bdce104.tar.bz2 |
* generic/tclNamesp.c (NamespaceInscopeCmd): [namespace inscope]
* tests/namespace.test: commands were not reported by [info level]
[Bug 1400572].
Diffstat (limited to 'generic')
-rw-r--r-- | generic/tclNamesp.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 9e48c49..882c429 100644 --- a/generic/tclNamesp.c +++ b/generic/tclNamesp.c @@ -21,7 +21,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.89 2005/11/27 02:33:49 das Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.90 2006/01/09 18:35:01 dgp Exp $ */ #include "tclInt.h" @@ -3754,7 +3754,7 @@ NamespaceInscopeCmd( Tcl_Obj *CONST objv[]) /* Argument objects. */ { Tcl_Namespace *namespacePtr; - Tcl_CallFrame *framePtr; + CallFrame *framePtr; int i, result; if (objc < 4) { @@ -3780,11 +3780,13 @@ NamespaceInscopeCmd( * Make the specified namespace the current namespace. */ - result = TclPushStackFrame(interp, &framePtr, namespacePtr, - /*isProcCallFrame*/ 0); + result = TclPushStackFrame(interp, (Tcl_CallFrame **)&framePtr, + namespacePtr, /*isProcCallFrame*/ 0); if (result != TCL_OK) { return result; } + framePtr->objc = objc; + framePtr->objv = objv; /* * Execute the command. If there is just one argument, just treat it as a |