diff options
author | hobbs <hobbs> | 1999-11-19 06:33:58 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 1999-11-19 06:33:58 (GMT) |
commit | b5a3b0736e5c9388b4979a05136aba4c833e902d (patch) | |
tree | 34190bd634f345f5fbdb9b251d0034f432ccc425 /doc/tcltest.n | |
parent | 4085140e65b5b9b7df45ab0cd8f6981240c32693 (diff) | |
download | tcl-b5a3b0736e5c9388b4979a05136aba4c833e902d.zip tcl-b5a3b0736e5c9388b4979a05136aba4c833e902d.tar.gz tcl-b5a3b0736e5c9388b4979a05136aba4c833e902d.tar.bz2 |
* doc/scan.n:
* tests/scan.test:
* generic/tclScan.c: finished support for inline scan by
supporting XPG identifiers.
* doc/http.n:
* library/http2.1/http.tcl: added register and unregister
commands to http:: package (better support for tls/SSL),
as well as -type argument to http::geturl. [RFE: 2617]
* doc/glob.n: added note about ..../ glob behavior on Win9*
* doc/tcltest.n: fixed minor example errors [Bug: 3551]
Diffstat (limited to 'doc/tcltest.n')
-rw-r--r-- | doc/tcltest.n | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/tcltest.n b/doc/tcltest.n index 56f10a8..7eda973 100644 --- a/doc/tcltest.n +++ b/doc/tcltest.n @@ -6,7 +6,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.7 1999/10/19 18:08:40 jenn Exp $ +'\" RCS: @(#) $Id: tcltest.n,v 1.8 1999/11/19 06:34:00 hobbs Exp $ '\" .so man.macros .TH "Tcltest" n 8.2 Tcl "Tcl Built-In Commands" @@ -714,7 +714,7 @@ A simple test file (foo.test) .DS if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest - import namespace ::tcltest::* + namespace import ::tcltest::* } test foo-1.1 {save 1 in variable name foo} {} { @@ -729,7 +729,7 @@ A simple all.tcl .DS if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest - import namespace ::tcltest::* + namespace import ::tcltest::* } set ::tcltest::testSingleFile false |