diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-07 12:37:14 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-12-07 12:37:14 (GMT) |
commit | 5dafe4ef8d8cdadb34bb45b7c3608c843bca623b (patch) | |
tree | b34054e2d1c9a7f2e2ab2238d182984ec14ba933 /unix/dltest/pkge.c | |
parent | 252431a635b7659d22579fcd187264884472c72f (diff) | |
parent | 55328af8909d074b8715cb5c50453d0d6e0149e4 (diff) | |
download | tcl-better_deprecation_85.zip tcl-better_deprecation_85.tar.gz tcl-better_deprecation_85.tar.bz2 |
merge core-8-5-branch.better_deprecation_85
eliminate more deprecated calls
Diffstat (limited to 'unix/dltest/pkge.c')
-rw-r--r-- | unix/dltest/pkge.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/dltest/pkge.c b/unix/dltest/pkge.c index abd2359..e1e5d41 100644 --- a/unix/dltest/pkge.c +++ b/unix/dltest/pkge.c @@ -41,5 +41,5 @@ Pkge_Init( if (Tcl_InitStubs(interp, TCL_VERSION, 0) == NULL) { return TCL_ERROR; } - return Tcl_Eval(interp, script); + return Tcl_EvalEx(interp, script, -1, 0); } |