summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordonal.k.fellows@manchester.ac.uk <dkf>2012-11-05 21:47:12 (GMT)
committerdonal.k.fellows@manchester.ac.uk <dkf>2012-11-05 21:47:12 (GMT)
commit62dfabe93c4955b1796d24929064c165b4ad66a1 (patch)
treee7309d1bf37af63ebd599a4d19557223911d8834
parent9647f4adf6548f409b4aa954b4b14ad2c067f686 (diff)
parent3cc846b91a3a2c26999a7834e0eb05e75b09a2df (diff)
downloadtcl-62dfabe93c4955b1796d24929064c165b4ad66a1.zip
tcl-62dfabe93c4955b1796d24929064c165b4ad66a1.tar.gz
tcl-62dfabe93c4955b1796d24929064c165b4ad66a1.tar.bz2
merge trunk: INST_TAILCALL has bug
-rw-r--r--changes8
-rw-r--r--generic/tclBasic.c2
2 files changed, 8 insertions, 2 deletions
diff --git a/changes b/changes
index b902445..af236f3 100644
--- a/changes
+++ b/changes
@@ -8108,7 +8108,7 @@ and Tcl_FSMountsChanged(). (porter)
2012-08-25 (bug fix)[3561330] Ukranian translation of "March" (teterin)
-2012-09-12 (TIP 404) New msgcat commands [mcflset], [mcflmset] (oehlmann)
+2012-09-07 (TIP 404) New msgcat commands [mcflset], [mcflmset] (oehlmann)
=> msgcat 1.5.0
Many revisions to better support a Cygwin environment (nijtmans)
@@ -8116,3 +8116,9 @@ Many revisions to better support a Cygwin environment (nijtmans)
Dropped support for OS X versions less than 10.4 (Tiger) (fellows)
--- Released 8.6b3, September 18, 2012 --- See ChangeLog for details ---
+
+2012-10-03 (bug fix) exit panic on stacked std channel (griffin,porter)
+
+2012-10-14 (bug fix) [tcl::Bgerror] crash on non-dict options (nijtmans)
+
+--- Released 8.6.0, ??? ??, 2012 --- See ChangeLog for details ---
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},