diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-04 10:51:00 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2013-02-04 10:51:00 (GMT) |
commit | 586e53a4ac38b4a017a8be29a3832632ef62705a (patch) | |
tree | 0fec8c7f2acfd218238c4f65771d849440f1b44e /generic/tclCompile.c | |
parent | d92d307894b14bbb065fdb65c5158f391da00cf1 (diff) | |
download | tcl-586e53a4ac38b4a017a8be29a3832632ef62705a.zip tcl-586e53a4ac38b4a017a8be29a3832632ef62705a.tar.gz tcl-586e53a4ac38b4a017a8be29a3832632ef62705a.tar.bz2 |
Eliminate all Tcl_ConvertToType calls and all direct calls to typePtr->setFromAnyProc (except the call from inside the Tcl_ConvertToType function) from the Tcl core.
Diffstat (limited to 'generic/tclCompile.c')
-rw-r--r-- | generic/tclCompile.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/generic/tclCompile.c b/generic/tclCompile.c index 33d67ff..4069cf0 100644 --- a/generic/tclCompile.c +++ b/generic/tclCompile.c @@ -789,8 +789,7 @@ SetByteCodeFromAny( if (interp == NULL) { return TCL_ERROR; } - TclSetByteCodeFromAny(interp, objPtr, NULL, NULL); - return TCL_OK; + return TclSetByteCodeFromAny(interp, objPtr, NULL, NULL); } /* |