diff options
author | dgp <dgp@users.sourceforge.net> | 2002-10-28 16:34:22 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2002-10-28 16:34:22 (GMT) |
commit | ea432f9ed64a081a64f0865fb76793bfbb7d427a (patch) | |
tree | 18c63ca5b6e3c52a05cde2655e7dfd0de8df5410 /library/auto.tcl | |
parent | df42d509ff170d087fbcc7605762712f02adca17 (diff) | |
download | tcl-ea432f9ed64a081a64f0865fb76793bfbb7d427a.zip tcl-ea432f9ed64a081a64f0865fb76793bfbb7d427a.tar.gz tcl-ea432f9ed64a081a64f0865fb76793bfbb7d427a.tar.bz2 |
* library/auto.tcl: Converted the Mac-specific [package unknown]
* library/init.tcl: behavior to use a chaining mechanism to extend
* library/package.tcl: the default [tclPkgUnknown]. [Bug 627660]
* library/tclIndex: [Patch 624509] (steffen)
Diffstat (limited to 'library/auto.tcl')
-rw-r--r-- | library/auto.tcl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/library/auto.tcl b/library/auto.tcl index dcea2b5..4c736fe 100644 --- a/library/auto.tcl +++ b/library/auto.tcl @@ -3,7 +3,7 @@ # utility procs formerly in init.tcl dealing with auto execution # of commands and can be auto loaded themselves. # -# RCS: @(#) $Id: auto.tcl,v 1.11 2002/10/22 16:41:27 das Exp $ +# RCS: @(#) $Id: auto.tcl,v 1.12 2002/10/28 16:34:25 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1998 Sun Microsystems, Inc. @@ -28,7 +28,8 @@ proc auto_reset {} { if {[info exists auto_index($p)] && ![string match auto_* $p] && ([lsearch -exact {unknown pkg_mkIndex tclPkgSetup tcl_findLibrary pkg_compareExtension - tclMacPkgSearch tclPkgUnknown} $p] < 0)} { + tclPkgUnknown tcl::MacOSXPkgUnknown + tcl::MacPkgUnknown} $p] < 0)} { rename $p {} } } |