summaryrefslogtreecommitdiffstats
path: root/generic/tclThreadTest.c
diff options
context:
space:
mode:
authordgp@users.sourceforge.net <dgp>2005-03-25 00:35:02 (GMT)
committerdgp@users.sourceforge.net <dgp>2005-03-25 00:35:02 (GMT)
commit02e01e642506b043622767740b7b3e8ef955e423 (patch)
tree7ed520c881fe9142539f191e72a2580a6a3e0944 /generic/tclThreadTest.c
parent38de94229c9baa7bbc4e174f704f258c895917d2 (diff)
downloadtcl-02e01e642506b043622767740b7b3e8ef955e423.zip
tcl-02e01e642506b043622767740b7b3e8ef955e423.tar.gz
tcl-02e01e642506b043622767740b7b3e8ef955e423.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.c5
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;
}