diff options
author | dgp <dgp@users.sourceforge.net> | 2003-01-24 16:33:35 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-01-24 16:33:35 (GMT) |
commit | cc621fa3eae47ef63da1c5439aa5ede1c3ea30e1 (patch) | |
tree | 8afdd9a362e10b4ffd07252775c7f0d4d41dac36 /doc/tcltest.n | |
parent | 4153d1c96b34a5db96160e30ff715b3c4fec7148 (diff) | |
download | tcl-cc621fa3eae47ef63da1c5439aa5ede1c3ea30e1.zip tcl-cc621fa3eae47ef63da1c5439aa5ede1c3ea30e1.tar.gz tcl-cc621fa3eae47ef63da1c5439aa5ede1c3ea30e1.tar.bz2 |
Use [file dirname], not the abbreviation [file dir]
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 |