summaryrefslogtreecommitdiffstats
path: root/generic/tclBasic.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2003-04-05 01:41:21 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2003-04-05 01:41:21 (GMT)
commitad24d78a8ea574457accd30663a366f6502be5bc (patch)
treeb4566b11868c676dec44dcd91a435f0d783f9e32 /generic/tclBasic.c
parentb53447957866538072ba7c85a05786927801ec14 (diff)
downloadtcl-ad24d78a8ea574457accd30663a366f6502be5bc.zip
tcl-ad24d78a8ea574457accd30663a366f6502be5bc.tar.gz
tcl-ad24d78a8ea574457accd30663a366f6502be5bc.tar.bz2
Final stage of getting dictionaries into the core. Test suite should work now!
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r--generic/tclBasic.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c
index 5315494..c7c990d 100644
--- a/generic/tclBasic.c
+++ b/generic/tclBasic.c
@@ -13,7 +13,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.77 2003/03/13 02:48:52 dgp Exp $
+ * RCS: @(#) $Id: tclBasic.c,v 1.78 2003/04/05 01:41:22 dkf Exp $
*/
#include "tclInt.h"
@@ -88,6 +88,8 @@ static CmdInfo builtInCmds[] = {
(CompileProc *) NULL, 1},
{"continue", (Tcl_CmdProc *) NULL, Tcl_ContinueObjCmd,
TclCompileContinueCmd, 1},
+ {"dict", (Tcl_CmdProc *) NULL, Tcl_DictObjCmd,
+ (CompileProc *) NULL, 1},
{"encoding", (Tcl_CmdProc *) NULL, Tcl_EncodingObjCmd,
(CompileProc *) NULL, 0},
{"error", (Tcl_CmdProc *) NULL, Tcl_ErrorObjCmd,