diff options
author | dgp <dgp@users.sourceforge.net> | 2005-03-25 00:35:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-03-25 00:35:02 (GMT) |
commit | eee7eab0e7b0dc4de7075e8ff5593216a2660bb0 (patch) | |
tree | 7ed520c881fe9142539f191e72a2580a6a3e0944 /generic/tclThreadTest.c | |
parent | 3823be6fa3f36e6e920aee1c399d1dd817785488 (diff) | |
download | tcl-eee7eab0e7b0dc4de7075e8ff5593216a2660bb0.zip tcl-eee7eab0e7b0dc4de7075e8ff5593216a2660bb0.tar.gz tcl-eee7eab0e7b0dc4de7075e8ff5593216a2660bb0.tar.bz2 |
* generic/tclCompile.h: Move the TclInterpReady() declaration from
* generic/tclInt.h: tclCompile.h to tclInt.h. Should have
been done as part of the 1115904 bug fix on 2005-03-18.
* generic/tclThreadTest.c: Stop providing the phony package
"Thread 1.0" when the [::testthread] command is defined. It's
never used by anything, and conflicts with loading the real
"Thread" package.
Diffstat (limited to 'generic/tclThreadTest.c')
-rw-r--r-- | generic/tclThreadTest.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/generic/tclThreadTest.c b/generic/tclThreadTest.c index 7ea39dc..7b2ac56 100644 --- a/generic/tclThreadTest.c +++ b/generic/tclThreadTest.c @@ -11,7 +11,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclThreadTest.c,v 1.17 2004/10/20 05:28:39 dgp Exp $ + * RCS: @(#) $Id: tclThreadTest.c,v 1.18 2005/03/25 00:35:03 dgp Exp $ */ #include "tclInt.h" @@ -160,9 +160,6 @@ TclThread_Init(interp) Tcl_CreateObjCommand(interp,"testthread", Tcl_ThreadObjCmd, (ClientData)NULL ,NULL); - if (Tcl_PkgProvide(interp, "Thread", "1.0" ) != TCL_OK) { - return TCL_ERROR; - } return TCL_OK; } |