diff options
| author | dgp@users.sourceforge.net <dgp> | 2004-12-04 21:19:15 (GMT) |
|---|---|---|
| committer | dgp@users.sourceforge.net <dgp> | 2004-12-04 21:19:15 (GMT) |
| commit | 003dabf9ccae62761ec371af4736db48423e86c6 (patch) | |
| tree | 545a48ddf28d3b44bd1730534af8f674aa8e06b3 /generic/tclEncoding.c | |
| parent | 6cb4af720404c83febb8a4ea80e119a408a17d77 (diff) | |
| download | tcl-003dabf9ccae62761ec371af4736db48423e86c6.zip tcl-003dabf9ccae62761ec371af4736db48423e86c6.tar.gz tcl-003dabf9ccae62761ec371af4736db48423e86c6.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/tclEncoding.c')
| -rw-r--r-- | generic/tclEncoding.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/generic/tclEncoding.c b/generic/tclEncoding.c index 3cbf450..a525283 100644 --- a/generic/tclEncoding.c +++ b/generic/tclEncoding.c @@ -8,7 +8,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclEncoding.c,v 1.30 2004/12/02 23:24:57 dgp Exp $ + * RCS: @(#) $Id: tclEncoding.c,v 1.31 2004/12/04 21:19:18 dgp Exp $ */ #include "tclInt.h" @@ -513,7 +513,6 @@ TclInitEncodingSubsystem() Tcl_CreateEncoding(&type); encodingsInitialized = 1; - TclpSetInitialEncodings(); } /* @@ -1303,6 +1302,7 @@ Tcl_FindExecutable(argv0) * (native). */ { TclInitSubsystems(); + TclpSetInitialEncodings(); TclpFindExecutable(argv0); } |
