diff options
author | andreas_kupries <akupries@shaw.ca> | 2005-08-29 21:55:27 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2005-08-29 21:55:27 (GMT) |
commit | 2e73eedbe37a9f715cd90a7428f6d03648491e8a (patch) | |
tree | 0d68034e7146db405d2976bddd036892daac5f6f /library | |
parent | 55f4459894b78e186f016bfd48cacb8a007681c5 (diff) | |
download | tcl-2e73eedbe37a9f715cd90a7428f6d03648491e8a.zip tcl-2e73eedbe37a9f715cd90a7428f6d03648491e8a.tar.gz tcl-2e73eedbe37a9f715cd90a7428f6d03648491e8a.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).
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 } |