diff options
author | dgp <dgp@noemail.net> | 2003-01-24 16:33:35 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2003-01-24 16:33:35 (GMT) |
commit | 817903763f375b727aa65081fab3cb79edb67c39 (patch) | |
tree | 8afdd9a362e10b4ffd07252775c7f0d4d41dac36 /doc/tcltest.n | |
parent | d33e7e0b0c02b88f93bc3af70d7ce40f385b242e (diff) | |
download | tcl-817903763f375b727aa65081fab3cb79edb67c39.zip tcl-817903763f375b727aa65081fab3cb79edb67c39.tar.gz tcl-817903763f375b727aa65081fab3cb79edb67c39.tar.bz2 |
Use [file dirname], not the abbreviation [file dir]
FossilOrigin-Name: e140ecaf7e6e7d328a78f7e18138f2f1583e36a6
Diffstat (limited to 'doc/tcltest.n')
-rw-r--r-- | doc/tcltest.n | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/tcltest.n b/doc/tcltest.n index 28be55e..c395823 100644 --- a/doc/tcltest.n +++ b/doc/tcltest.n @@ -8,7 +8,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: tcltest.n,v 1.37 2003/01/24 14:07:39 dgp Exp $ +'\" RCS: @(#) $Id: tcltest.n,v 1.38 2003/01/24 16:33:35 dgp Exp $ '\" .so man.macros .TH "tcltest" n 2.2 tcltest "Tcl Bundled Packages" @@ -1003,7 +1003,7 @@ package require Tcl 8.4 package require tcltest 2.2 package require example tcltest::configure -testdir \ - [file dir [file normalize [info script]]] + [file dirname [file normalize [info script]]] eval tcltest::configure $argv tcltest::runAllTests .CE |