diff options
author | stanton <stanton> | 1998-07-24 15:37:52 (GMT) |
---|---|---|
committer | stanton <stanton> | 1998-07-24 15:37:52 (GMT) |
commit | 8dc078d49421862eab239a181ca42a2f7d87b9ec (patch) | |
tree | 14dca3ab6d93e5b2a318f7e50a74ad5d1f0eb27e /unix/tclUnixInit.c | |
parent | 7815ce557f04bd5d1de3320caae7d9184dbfaef5 (diff) | |
download | tcl-8dc078d49421862eab239a181ca42a2f7d87b9ec.zip tcl-8dc078d49421862eab239a181ca42a2f7d87b9ec.tar.gz tcl-8dc078d49421862eab239a181ca42a2f7d87b9ec.tar.bz2 |
changed to set tclDefaultLibrary instead of tcl_library
Diffstat (limited to 'unix/tclUnixInit.c')
-rw-r--r-- | unix/tclUnixInit.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/unix/tclUnixInit.c b/unix/tclUnixInit.c index 25b8b8d..05a0265 100644 --- a/unix/tclUnixInit.c +++ b/unix/tclUnixInit.c @@ -110,7 +110,8 @@ TclPlatformInit(interp) int unameOK; tclPlatform = TCL_PLATFORM_UNIX; - Tcl_SetVar(interp, "tcl_library", defaultLibraryDir, TCL_GLOBAL_ONLY); + Tcl_SetVar(interp, "tclDefaultLibrary", defaultLibraryDir, + TCL_GLOBAL_ONLY); Tcl_SetVar(interp, "tcl_pkgPath", pkgPath, TCL_GLOBAL_ONLY); Tcl_SetVar2(interp, "tcl_platform", "platform", "unix", TCL_GLOBAL_ONLY); unameOK = 0; |