diff options
author | hobbs <hobbs> | 2004-04-07 22:04:19 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2004-04-07 22:04:19 (GMT) |
commit | 9c4ceb163fd879f11fc0c03f0b20f8b86539f76c (patch) | |
tree | 838a0a2bc8c76ff14061d2cb1d442e1e487df248 /unix/tclUnixInit.c | |
parent | bbbf72f5942c4fca232299946e6169fb4e796bcb (diff) | |
download | tcl-9c4ceb163fd879f11fc0c03f0b20f8b86539f76c.zip tcl-9c4ceb163fd879f11fc0c03f0b20f8b86539f76c.tar.gz tcl-9c4ceb163fd879f11fc0c03f0b20f8b86539f76c.tar.bz2 |
* win/tclWinInit.c (TclpSetInitialEncodings): note that WIN32_CE
is also a unicode platform.
* generic/tclEncoding.c (TclFindEncodings, Tcl_FindExecutable):
* generic/tclInt.h: Correct handling of UTF
* unix/tclUnixInit.c (TclpInitLibraryPath): data that is actually
* win/tclWinFile.c (TclpFindExecutable): "clean", allowing the
* win/tclWinInit.c (TclpInitLibraryPath): loading of Tcl from
paths that contain multi-byte chars on Windows [Bug 920667]
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 43f9348..f7e5722 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.40 2004/04/06 22:25:57 dgp Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.41 2004/04/07 22:04:30 hobbs Exp $ */ #if defined(HAVE_CFBUNDLE) @@ -246,7 +246,8 @@ TclpInitPlatform() * Called at process initialization time. * * Results: - * None. + * Return 1, indicating that the UTF may be dirty and require "cleanup" + * after encodings are initialized. * * Side effects: * None. @@ -254,7 +255,7 @@ TclpInitPlatform() *--------------------------------------------------------------------------- */ -void +int TclpInitLibraryPath(path) CONST char *path; /* Path to the executable in native * multi-byte encoding. */ @@ -457,6 +458,8 @@ CONST char *path; /* Path to the executable in native TclSetLibraryPath(pathPtr); Tcl_DStringFree(&buffer); + + return 1; /* 1 indicates that pathPtr may be dirty utf (needs cleaning) */ } /* |