diff options
author | dgp <dgp@users.sourceforge.net> | 2004-11-26 19:42:04 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-11-26 19:42:04 (GMT) |
commit | f70164d8332b6095c59c58689eac31b6440ea7b0 (patch) | |
tree | 12e355d514da43fd99eeb0f60b975eea1ebde074 /library/auto.tcl | |
parent | d7f5fc75acab70dbdea0f73bff1011945e7330d4 (diff) | |
download | tcl-f70164d8332b6095c59c58689eac31b6440ea7b0.zip tcl-f70164d8332b6095c59c58689eac31b6440ea7b0.tar.gz tcl-f70164d8332b6095c59c58689eac31b6440ea7b0.tar.bz2 |
* library/auto.tcl (tcl_findLibrary): Made sure the uniquifying
operations on the search path does not also normalize. [Bug 1072136]
Diffstat (limited to 'library/auto.tcl')
-rw-r--r-- | library/auto.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/auto.tcl b/library/auto.tcl index d3a3fab..431895d 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.12.2.1 2004/11/16 16:56:01 dgp Exp $ +# RCS: @(#) $Id: auto.tcl,v 1.12.2.2 2004/11/26 19:42:06 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1998 Sun Microsystems, Inc. @@ -136,7 +136,7 @@ proc tcl_findLibrary {basename version patch initScript enVarName varName} { } if {[info exists seen($norm)]} { continue } set seen($norm) "" - lappend uniqdirs $norm + lappend uniqdirs $i } set dirs $uniqdirs foreach i $dirs { |