diff options
author | dgp <dgp@users.sourceforge.net> | 2016-07-01 13:20:37 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2016-07-01 13:20:37 (GMT) |
commit | 8c8ec10e78e872ffa4e4edef6ae16e03d5872efc (patch) | |
tree | 1c5bf6fee4edc951455162bd2f595c234b8dd3f9 | |
parent | 7e0d210c016493f722bbdc65ed2d7e31e69d0330 (diff) | |
download | tcl-8c8ec10e78e872ffa4e4edef6ae16e03d5872efc.zip tcl-8c8ec10e78e872ffa4e4edef6ae16e03d5872efc.tar.gz tcl-8c8ec10e78e872ffa4e4edef6ae16e03d5872efc.tar.bz2 |
Disable special hacks for Itcl 3 ensemble error message generation.
Migration paths are in place to bring this to an end.
-rw-r--r-- | generic/tclInt.h | 13 | ||||
-rw-r--r-- | tests/indexObj.test | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/generic/tclInt.h b/generic/tclInt.h index 49a299c..85981d9 100644 --- a/generic/tclInt.h +++ b/generic/tclInt.h @@ -26,6 +26,19 @@ #undef ACCEPT_NAN /* + * In Tcl 8.7, stop supporting special hacks for legacy Itcl 3. + * Itcl 4 doesn't need them. Itcl 3 can be updated to not need them + * using the Tcl(Init|Reset)RewriteEnsemble() routines in all Tcl 8.6+ + * releases. Perhaps Tcl 8.7 will add even better public interfaces + * supporting all the re-invocation mechanisms extensions like Itcl 3 + * need. As an absolute last resort, folks who must make Itcl 3 work + * unchanged with Tcl 8.7 can remove this line to regain the migration + * support. Tcl 9 will no longer offer even that option. + */ + +#define AVOID_HACKS_FOR_ITCL 1 + +/* * Common include files needed by most of the Tcl source files are included * here, so that system-dependent personalizations for the include files only * have to be made in once place. This results in a few extra includes, but diff --git a/tests/indexObj.test b/tests/indexObj.test index 646cb02..126d062 100644 --- a/tests/indexObj.test +++ b/tests/indexObj.test @@ -109,7 +109,7 @@ test indexObj-5.6 {Tcl_WrongNumArgs} testindexobj { } "wrong # args: should be \"mycmd foo\"" # Contrast this with test proc-3.6; they have to be like this because # of [Bug 1066837] so Itcl won't break. -test indexObj-5.7 {Tcl_WrongNumArgs} testindexobj { +test indexObj-5.7 {Tcl_WrongNumArgs} {testindexobj obsolete} { testwrongnumargs 2 "fee fi" "fo fum" foo bar } "wrong # args: should be \"fo fum foo fee fi\"" |