summaryrefslogtreecommitdiffstats
path: root/unix/dltest
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-17 22:28:38 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2013-01-17 22:28:38 (GMT)
commit729687600b66c16b05f8b800209bf0252c285bac (patch)
tree6046e84e87a076d9ed6ca1edf226832ffa7bd073 /unix/dltest
parent5183004618b076623516cc260ae3e9e283252186 (diff)
downloadtcl-729687600b66c16b05f8b800209bf0252c285bac.zip
tcl-729687600b66c16b05f8b800209bf0252c285bac.tar.gz
tcl-729687600b66c16b05f8b800209bf0252c285bac.tar.bz2
Convert Tcl_Eval and Tcl_GlobalEval to a macro
Diffstat (limited to 'unix/dltest')
-rw-r--r--unix/dltest/pkge.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/dltest/pkge.c b/unix/dltest/pkge.c
index a36ac30..c3380a7 100644
--- a/unix/dltest/pkge.c
+++ b/unix/dltest/pkge.c
@@ -41,5 +41,5 @@ Pkge_Init(
if (Tcl_InitStubs(interp, "9.0", 0) == NULL) {
return TCL_ERROR;
}
- return Tcl_Eval(interp, script);
+ return Tcl_EvalEx(interp, script, -1, 0);
}