summaryrefslogtreecommitdiffstats
path: root/unix/dltest/pkgd.c
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2010-03-28 03:17:47 (GMT)
committerdgp <dgp@users.sourceforge.net>2010-03-28 03:17:47 (GMT)
commit9197b2055e8b84a7e209d45dd88997ba18a1e4e5 (patch)
treefd17d362d99625ecf18285d30c31b3fe01b8a534 /unix/dltest/pkgd.c
parentd6b47c13b9de8ed40d1c144b8a70ccec677a5231 (diff)
downloadtcl-9197b2055e8b84a7e209d45dd88997ba18a1e4e5.zip
tcl-9197b2055e8b84a7e209d45dd88997ba18a1e4e5.tar.gz
tcl-9197b2055e8b84a7e209d45dd88997ba18a1e4e5.tar.bz2
Revert the conversion of TCL_VERSION to "8.1" and "8.5" in the Tcl_InitStubs()
calls of the pkg*.c testing extensions.
Diffstat (limited to 'unix/dltest/pkgd.c')
-rw-r--r--unix/dltest/pkgd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/unix/dltest/pkgd.c b/unix/dltest/pkgd.c
index ef6f339..d713e2e 100644
--- a/unix/dltest/pkgd.c
+++ b/unix/dltest/pkgd.c
@@ -10,7 +10,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: pkgd.c,v 1.11 2010/03/27 22:47:04 nijtmans Exp $
+ * RCS: @(#) $Id: pkgd.c,v 1.12 2010/03/28 03:17:50 dgp Exp $
*/
#include "tcl.h"
@@ -122,7 +122,7 @@ Pkgd_Init(
{
int code;
- if (Tcl_InitStubs(interp, "8.1", 0) == NULL) {
+ if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
return TCL_ERROR;
}
code = Tcl_PkgProvide(interp, "Pkgd", "7.3");
@@ -159,7 +159,7 @@ Pkgd_SafeInit(
{
int code;
- if (Tcl_InitStubs(interp, "8.1", 0) == NULL) {
+ if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
return TCL_ERROR;
}
code = Tcl_PkgProvide(interp, "Pkgd", "7.3");