summaryrefslogtreecommitdiffstats
path: root/generic/tclTest.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-07-24 06:39:52 (GMT)
committernijtmans <nijtmans>2010-07-24 06:39:52 (GMT)
commitd905057aa1a137b50325a061e0ebb35f5efdf3b1 (patch)
treedc43e0c0e3e08205723e1014451c4af144ba8d72 /generic/tclTest.c
parent971d0d7eacc5ec89acf9582a06872a48002a2fa1 (diff)
downloadtcl-d905057aa1a137b50325a061e0ebb35f5efdf3b1.zip
tcl-d905057aa1a137b50325a061e0ebb35f5efdf3b1.tar.gz
tcl-d905057aa1a137b50325a061e0ebb35f5efdf3b1.tar.bz2
[Bug 3029891] Functions that don't belong in the stub table.
Diffstat (limited to 'generic/tclTest.c')
-rw-r--r--generic/tclTest.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/generic/tclTest.c b/generic/tclTest.c
index bdc9b90..5c7dfbf 100644
--- a/generic/tclTest.c
+++ b/generic/tclTest.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclTest.c,v 1.151 2010/04/20 14:24:34 nijtmans Exp $
+ * RCS: @(#) $Id: tclTest.c,v 1.152 2010/07/24 06:39:52 nijtmans Exp $
*/
#undef STATIC_BUILD
@@ -4112,8 +4112,8 @@ TeststaticpkgCmd(
if (Tcl_GetInt(interp, argv[3], &loaded) != TCL_OK) {
return TCL_ERROR;
}
- Tcl_StaticPackage((loaded) ? interp : NULL, argv[1], StaticInitProc,
- (safe) ? StaticInitProc : NULL);
+ tclStubsPtr->tcl_StaticPackage((loaded) ? interp : NULL, argv[1],
+ StaticInitProc, (safe) ? StaticInitProc : NULL);
return TCL_OK;
}