diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2006-08-18 22:28:44 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2006-08-18 22:28:44 (GMT) |
commit | d73fb3e91b32d06bd5043b1e5f1526cfd141e3a6 (patch) | |
tree | ea35766eedea81476b8316afad13921e455f5a9a /generic/tclBasic.c | |
parent | e77f93e80bc24a18dc60f0930e732afd8d9a6e95 (diff) | |
download | tcl-d73fb3e91b32d06bd5043b1e5f1526cfd141e3a6.zip tcl-d73fb3e91b32d06bd5043b1e5f1526cfd141e3a6.tar.gz tcl-d73fb3e91b32d06bd5043b1e5f1526cfd141e3a6.tar.bz2 |
Assemble enough pieces together that at least some method dispatch is now working!
Diffstat (limited to 'generic/tclBasic.c')
-rw-r--r-- | generic/tclBasic.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/generic/tclBasic.c b/generic/tclBasic.c index 42f07a6..5666b01 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.189 2006/02/01 19:26:01 dgp Exp $ + * RCS: @(#) $Id: tclBasic.c,v 1.189.2.1 2006/08/18 22:28:44 dkf Exp $ */ #include "tclInt.h" @@ -532,13 +532,18 @@ Tcl_CreateInterp(void) #endif /* - * TIP #59: Make embedded configuration information - * available. + * TIP #59: Make embedded configuration information available. */ TclInitEmbeddedConfigurationInformation(interp); /* + * TIP #257: Install the OO engine (for testing). + */ + + TclOOInit(interp); + + /* * Compute the byte order of this machine. */ |