summaryrefslogtreecommitdiffstats
path: root/unix/dltest/pkgua.c
diff options
context:
space:
mode:
authornijtmans <nijtmans>2010-03-27 22:47:04 (GMT)
committernijtmans <nijtmans>2010-03-27 22:47:04 (GMT)
commitd6b47c13b9de8ed40d1c144b8a70ccec677a5231 (patch)
treed65014decff2b760a5c13d4a872918187510515e /unix/dltest/pkgua.c
parent419d5645c272033992ce63a5c714a64436e9f189 (diff)
downloadtcl-d6b47c13b9de8ed40d1c144b8a70ccec677a5231.zip
tcl-d6b47c13b9de8ed40d1c144b8a70ccec677a5231.tar.gz
tcl-d6b47c13b9de8ed40d1c144b8a70ccec677a5231.tar.bz2
Provide "lowest supported Tcl version" to
the Tcl_InitStubs functions in unix/dltest, in stead of "current Tcl version"
Diffstat (limited to 'unix/dltest/pkgua.c')
-rw-r--r--unix/dltest/pkgua.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/dltest/pkgua.c b/unix/dltest/pkgua.c
index 74a550d..d22adcb 100644
--- a/unix/dltest/pkgua.c
+++ b/unix/dltest/pkgua.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: pkgua.c,v 1.9 2010/02/22 23:31:41 nijtmans Exp $
+ * RCS: @(#) $Id: pkgua.c,v 1.10 2010/03/27 22:47:04 nijtmans Exp $
*/
#include "tcl.h"
@@ -209,7 +209,7 @@ Pkgua_Init(
int code, cmdIndex = 0;
Tcl_Command *cmdTokens;
- if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) {
+ if (Tcl_InitStubs(interp, "8.5", 0) == NULL) {
return TCL_ERROR;
}