summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2007-11-22 22:16:06 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2007-11-22 22:16:06 (GMT)
commit992b51fc822addcd91ae1ea44e0df3486e654c3d (patch)
tree86a28dd4bf00d016c19744f430376f68f2d0009a /generic/tclBasic.c
parent14a34c4087e1034699a9b588da8b0a9927479f45 (diff)
downloadtcl-992b51fc822addcd91ae1ea44e0df3486e654c3d.zip
tcl-992b51fc822addcd91ae1ea44e0df3486e654c3d.tar.gz
tcl-992b51fc822addcd91ae1ea44e0df3486e654c3d.tar.bz2
Rebuild [dict] as a full compiled ensemble.
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 09eecc1..531dc42 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -14,7 +14,7 @@
* See the file "license.terms" for information on usage and redistribution of
* this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
- * RCS: @(#) $Id: tclBasic.c,v 1.281 2007/11/12 22:12:05 msofer Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.282 2007/11/22 22:16:07 dkf Exp $
*/
#include "tclInt.h"
@@ -140,7 +140,6 @@ static const CmdInfo builtInCmds[] = {
{"catch", Tcl_CatchObjCmd, TclCompileCatchCmd, 1},
{"concat", Tcl_ConcatObjCmd, NULL, 1},
{"continue", Tcl_ContinueObjCmd, TclCompileContinueCmd, 1},
- {"dict", Tcl_DictObjCmd, TclCompileDictCmd, 1},
{"encoding", Tcl_EncodingObjCmd, NULL, 0},
{"error", Tcl_ErrorObjCmd, NULL, 1},
{"eval", Tcl_EvalObjCmd, NULL, 1},
@@ -670,6 +669,7 @@ Tcl_CreateInterp(void)
NULL, NULL);
}
+ TclInitDictCmd(interp);
TclInitInfoCmd(interp);
/* TIP #208 */