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 /unix/tclUnixInit.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 'unix/tclUnixInit.c')
| -rw-r--r-- | unix/tclUnixInit.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 4dd3208..1fcae33 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -7,7 +7,7 @@ * Copyright (c) 1999 by Scriptics Corporation. * All rights reserved. * - * RCS: @(#) $Id: tclUnixInit.c,v 1.53 2004/11/30 19:34:51 dgp Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.54 2004/12/04 21:19:19 dgp Exp $ */ #include "tclInt.h" @@ -583,6 +583,12 @@ TclpSetInitialEncodings() Tcl_DStringFree(&encodingName); } +void +TclpSetInterfaces() +{ + /* do nothing */ +} + CONST char * TclpGetEncodingNameFromEnvironment(bufPtr) Tcl_DString *bufPtr; |
