diff options
author | dgp <dgp@noemail.net> | 2004-06-11 22:39:28 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2004-06-11 22:39:28 (GMT) |
commit | e011560d89119f6e9de385b69e0a491be7666f08 (patch) | |
tree | 4db0875ecc9703ad519b37998b70b3980c02a6d7 /unix/tclUnixInit.c | |
parent | a90fac1713ec81b23cbf1323cb745c24ca752c9f (diff) | |
download | tcl-e011560d89119f6e9de385b69e0a491be7666f08.zip tcl-e011560d89119f6e9de385b69e0a491be7666f08.tar.gz tcl-e011560d89119f6e9de385b69e0a491be7666f08.tar.bz2 |
* doc/Encoding.3: Removed bogus claims about tcl_libPath.
* generic/tclInterp.c (Tcl_Init): Stopped setting the
tcl_libPath variable. [tclInit] can get all its directories
without it.
* tests/unixInit.test: Modified test code that made use of
tcl_libPath variable.
* unix/tclUnixInit.c: Stopped setting the tclDefaultLibrary variable,
execept on the Mac OS X platform with HAVE_CFBUNDLE. In that configuration
we should seek some way to make use of the TIP 59 facilities and
get rid of that usage of tclDefaultLibrary as well.
FossilOrigin-Name: 82f0fc8f01fa951f8126201f4d4b92f0a10cd620
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 87b6412..7934e28 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.43 2004/06/11 21:30:08 dgp Exp $ + * RCS: @(#) $Id: tclUnixInit.c,v 1.44 2004/06/11 22:39:30 dgp Exp $ */ #if defined(HAVE_CFBUNDLE) @@ -792,8 +792,6 @@ TclpSetVariables(interp) } else #endif /* HAVE_CFBUNDLE */ { - Tcl_SetVar(interp, "tclDefaultLibrary", defaultLibraryDir, - TCL_GLOBAL_ONLY); Tcl_SetVar(interp, "tcl_pkgPath", pkgPath, TCL_GLOBAL_ONLY); } |