summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2012-11-05 16:57:28 (GMT)
committerdgp <dgp@users.sourceforge.net>2012-11-05 16:57:28 (GMT)
commita3bc9d0e44b3b43d4b0a18810eed8c1a57a74f9f (patch)
tree54dabb2bad65674cdaea17f12909c23e444f5e23
parentb9c17fff375b73efa285cf4c118bb3f3790bf74f (diff)
downloadtcl-a3bc9d0e44b3b43d4b0a18810eed8c1a57a74f9f.zip
tcl-a3bc9d0e44b3b43d4b0a18810eed8c1a57a74f9f.tar.gz
tcl-a3bc9d0e44b3b43d4b0a18810eed8c1a57a74f9f.tar.bz2
Disable bytecompile of [tailcall] until it gets some repair. As is, it
hopelessly bogs down debug-enabled testing, and make many tests fail.
-rw-r--r--generic/tclBasic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index bce6479..cbdbe87 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -247,7 +247,7 @@ static const CmdInfo builtInCmds[] = {
{"split", Tcl_SplitObjCmd, NULL, NULL, 1},
{"subst", Tcl_SubstObjCmd, TclCompileSubstCmd, TclNRSubstObjCmd, 1},
{"switch", Tcl_SwitchObjCmd, TclCompileSwitchCmd, TclNRSwitchObjCmd, 1},
- {"tailcall", NULL, TclCompileTailcallCmd, TclNRTailcallObjCmd, 1},
+ {"tailcall", NULL, NULL, TclNRTailcallObjCmd, 1},
{"throw", Tcl_ThrowObjCmd, TclCompileThrowCmd, NULL, 1},
{"trace", Tcl_TraceObjCmd, NULL, NULL, 1},
{"try", Tcl_TryObjCmd, TclCompileTryCmd, TclNRTryObjCmd, 1},