diff options
author | andreas_kupries <andreas_kupries@noemail.net> | 2005-08-29 21:55:27 (GMT) |
---|---|---|
committer | andreas_kupries <andreas_kupries@noemail.net> | 2005-08-29 21:55:27 (GMT) |
commit | cb33d62c75d31b85db3af712d0e57548956b7a48 (patch) | |
tree | 0d68034e7146db405d2976bddd036892daac5f6f /library | |
parent | e2eb030ce1453fbdc887faef37136d183b9a63da (diff) | |
download | tcl-cb33d62c75d31b85db3af712d0e57548956b7a48.zip tcl-cb33d62c75d31b85db3af712d0e57548956b7a48.tar.gz tcl-cb33d62c75d31b85db3af712d0e57548956b7a48.tar.bz2 |
* library/tm.tcl (::tcl::tm::roots): Accepted Don Porter's patch
for [Tcl SF Bug 1189657]. Syncs the implementation to the
specification (TIP #189).
FossilOrigin-Name: 0ef4ca308707c779572bb109507905ffb004b41d
Diffstat (limited to 'library')
-rw-r--r-- | library/tm.tcl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/tm.tcl b/library/tm.tcl index 5c05e27..2830ea6 100644 --- a/library/tm.tcl +++ b/library/tm.tcl @@ -353,7 +353,7 @@ proc ::tcl::tm::roots {paths} { for {set n $minor} {$n >= 0} {incr n -1} { path add [file normalize [file join $p ${major}.${n}]] } - path add [file normalize [file join $pa site-tcl]] + path add [file normalize [file join $p site-tcl]] } return } |