diff options
author | hobbs <hobbs> | 2000-01-12 11:12:52 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2000-01-12 11:12:52 (GMT) |
commit | 406d6b83a7c5904f8364bca9dafa894901281bc2 (patch) | |
tree | 29e99ab6319a4b908ee0fe4c9945a73e768ecbeb /generic/tclNamesp.c | |
parent | 27b97b815ad52aaf241bcbe0fad4cd1967fadae8 (diff) | |
download | tcl-406d6b83a7c5904f8364bca9dafa894901281bc2.zip tcl-406d6b83a7c5904f8364bca9dafa894901281bc2.tar.gz tcl-406d6b83a7c5904f8364bca9dafa894901281bc2.tar.bz2 |
* generic/tclClock.c: fixed support for 64bit handling of clock
values [Bug: 1806]
* generic/tclThreadTest.c: upped a buffer size to hold double
* tests/info.test:
* generic/tclCmdIL.c: fixed 'info procs ::namesp::*' behavior (Dejong)
* generic/tclNamesp.c: made imported commands also import their
compile proc [Bug: 2100]
Diffstat (limited to 'generic/tclNamesp.c')
-rw-r--r-- | generic/tclNamesp.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclNamesp.c b/generic/tclNamesp.c index 4c4b4e5..ea7d0cd 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.13 1999/12/12 02:26:42 hobbs Exp $ + * RCS: @(#) $Id: tclNamesp.c,v 1.14 2000/01/12 11:12:53 hobbs Exp $ */ #include "tclInt.h" @@ -1262,6 +1262,7 @@ Tcl_Import(interp, namespacePtr, pattern, allowOverwrite) (ClientData) dataPtr, DeleteImportedCmd); dataPtr->realCmdPtr = cmdPtr; dataPtr->selfPtr = (Command *) importedCmd; + dataPtr->selfPtr->compileProc = cmdPtr->compileProc; /* * Create an ImportRef structure describing this new import |