diff options
author | dgp <dgp@users.sourceforge.net> | 2004-12-04 21:19:15 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-12-04 21:19:15 (GMT) |
commit | 199c1fb12767c9ef58c43b56f33ca3113eb738ab (patch) | |
tree | 545a48ddf28d3b44bd1730534af8f674aa8e06b3 /generic/tclEvent.c | |
parent | 2eb6dbf5b27a10b106d4ed4774b053de32876cf6 (diff) | |
download | tcl-199c1fb12767c9ef58c43b56f33ca3113eb738ab.zip tcl-199c1fb12767c9ef58c43b56f33ca3113eb738ab.tar.gz tcl-199c1fb12767c9ef58c43b56f33ca3113eb738ab.tar.bz2 |
* generic/tclEncoding.c: Different fix for [Bug 1077005].
* generic/tclEvent.c: Broke apart TclpSetInitialEncodings() on
* generic/tclInt.h: Windows into TclpSetInterfaces(), that is
* unix/tclUnixInit.c: fundamentally essential, and the initialization
* win/tclWinInit.c: of the system encoding, which is not. Made
the TclpSetInterfaces call part of TclInitSubsystems so it cannot be
overlooked.
Diffstat (limited to 'generic/tclEvent.c')
-rw-r--r-- | generic/tclEvent.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/generic/tclEvent.c b/generic/tclEvent.c index 62a2f3b..5a734c4 100644 --- a/generic/tclEvent.c +++ b/generic/tclEvent.c @@ -12,7 +12,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEvent.c,v 1.54 2004/12/01 23:18:50 dgp Exp $ + * RCS: @(#) $Id: tclEvent.c,v 1.55 2004/12/04 21:19:18 dgp Exp $ */ #include "tclInt.h" @@ -801,6 +801,7 @@ TclInitSubsystems() TclInitObjSubsystem(); /* register obj types, create mutexes */ TclInitIOSubsystem(); /* inits a tsd key (noop) */ TclInitEncodingSubsystem(); /* process wide encoding init */ + TclpSetInterfaces(); TclInitNamespaceSubsystem(); /* register ns obj type (mutexed) */ } TclpInitUnlock(); |