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 /tests/tm.test | |
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 'tests/tm.test')
-rw-r--r-- | tests/tm.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/tm.test b/tests/tm.test index 9f5a83a..3484747 100644 --- a/tests/tm.test +++ b/tests/tm.test @@ -6,7 +6,7 @@ # Copyright (c) 2004 by Donal K. Fellows. # All rights reserved. # -# RCS: @(#) $Id: tm.test,v 1.5 2004/11/05 09:21:46 dkf Exp $ +# RCS: @(#) $Id: tm.test,v 1.6 2005/08/29 21:55:27 andreas_kupries Exp $ package require Tcl 8.5 if {"::tcltest" ni [namespace children]} { @@ -204,8 +204,8 @@ proc genpaths {base} { set base [file normalize $base] foreach {major minor} [split [info tclversion] .] break set results {} - lappend results [file join $base site-tcl] set base [file join $base tcl$major] + lappend results [file join $base site-tcl] for {set i 0} {$i <= $minor} {incr i} { lappend results [file join $base ${major}.$i] } |