diff options
author | dgp <dgp@noemail.net> | 2002-04-05 15:47:05 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-04-05 15:47:05 (GMT) |
commit | 297fabf4fba96754e66fcf4990f2425f0c70f57f (patch) | |
tree | f619d4884d7e599e05fd41b866d41c3c0fc16c36 | |
parent | 8e1f59cdd99b09453e248499411e8f6bf9ba74c6 (diff) | |
download | tcl-297fabf4fba96754e66fcf4990f2425f0c70f57f.zip tcl-297fabf4fba96754e66fcf4990f2425f0c70f57f.tar.gz tcl-297fabf4fba96754e66fcf4990f2425f0c70f57f.tar.bz2 |
* converted getMatchingFile alias into a proc so safe-2.1 will not
be disturbed
FossilOrigin-Name: f6120d6e2fc7852b37d7af84d2f1adfe61f19d97
-rw-r--r-- | library/tcltest/tcltest.tcl | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/library/tcltest/tcltest.tcl b/library/tcltest/tcltest.tcl index 6568eeb..95bbd61 100644 --- a/library/tcltest/tcltest.tcl +++ b/library/tcltest/tcltest.tcl @@ -15,7 +15,7 @@ # Copyright (c) 2000 by Ajuba Solutions # All rights reserved. # -# RCS: @(#) $Id: tcltest.tcl,v 1.45 2002/04/04 15:30:55 dgp Exp $ +# RCS: @(#) $Id: tcltest.tcl,v 1.46 2002/04/05 15:47:05 dgp Exp $ # create the "tcltest" namespace for all testing variables and # procedures @@ -2548,8 +2548,7 @@ proc tcltest::cleanupTests {{calledFromAllFile 0}} { # None # a lower case version is needed for compatibility with tcltest 1.0 -interp alias {} [namespace current]::tcltest::getMatchingFiles \ - {} [namespace current]::tcltest::GetMatchingFiles +proc tcltest::getMatchFiles args {eval GetMatchingFiles $args} proc tcltest::GetMatchingFiles { {searchDirectory ""} } { if {[llength [info level 0]] == 1} { |