diff options
| author | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-03 00:01:35 (GMT) |
|---|---|---|
| committer | donal.k.fellows@manchester.ac.uk <dkf> | 2008-10-03 00:01:35 (GMT) |
| commit | c60d98a3b54e91176da928c500b7827d3caa3ff5 (patch) | |
| tree | d8574173fb0bbbbc67b3cb510304789c3bad6721 /generic/tclBasic.c | |
| parent | f09819fa637842ed4c2855fea1901fa3ecab1fef (diff) | |
| download | tcl-c60d98a3b54e91176da928c500b7827d3caa3ff5.zip tcl-c60d98a3b54e91176da928c500b7827d3caa3ff5.tar.gz tcl-c60d98a3b54e91176da928c500b7827d3caa3ff5.tar.bz2 | |
Implemented TIP#195 - tcl::prefix command. [Patch 1040206]
Diffstat (limited to 'generic/tclBasic.c')
| -rw-r--r-- | generic/tclBasic.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index d0a8635..036707d 100644 --- a/generic/tclBasic.c +++ b/generic/tclBasic.c @@ -16,7 +16,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.369 2008/10/02 20:59:45 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.370 2008/10/03 00:01:35 dkf Exp $ */ #include "tclInt.h" @@ -750,6 +750,7 @@ Tcl_CreateInterp(void) TclInitDictCmd(interp); TclInitInfoCmd(interp); TclInitStringCmd(interp); + TclInitPrefixCmd(interp); /* * Register "clock" subcommands. These *do* go through |
