diff options
author | dgp <dgp@users.sourceforge.net> | 2008-09-26 19:54:56 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2008-09-26 19:54:56 (GMT) |
commit | 030aaf8733e03063daa3c730c5b258575b9386ba (patch) | |
tree | 5ed68f5145215b594f13c8ca19970b476d33002b /doc/tm.n | |
parent | ed14e02fc83fc5a7dab826db93ce7e2d4e276a96 (diff) | |
download | tcl-030aaf8733e03063daa3c730c5b258575b9386ba.zip tcl-030aaf8733e03063daa3c730c5b258575b9386ba.tar.gz tcl-030aaf8733e03063daa3c730c5b258575b9386ba.tar.bz2 |
TIP #323 IMPLEMENTATION (partial)
* doc/tm.n: Revise [tcl::tm::path add] and
* library/tm.tcl: [tcl::tm::path remove] to accept zero paths.
* tests/tm.test:
Diffstat (limited to 'doc/tm.n')
-rw-r--r-- | doc/tm.n | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: tm.n,v 1.16 2008/06/25 18:18:37 dgp Exp $ +'\" RCS: @(#) $Id: tm.n,v 1.17 2008/09/26 19:54:56 dgp Exp $ '\" .so man.macros .TH tm n 8.5 Tcl "Tcl Built-In Commands" @@ -24,7 +24,7 @@ tm \- Facilities for locating and loading of Tcl Modules This document describes the facilities for locating and loading Tcl Modules. The following commands are supported: .TP -\fB::tcl::tm::path\fR \fBadd\fR \fIpath\fR... +\fB::tcl::tm::path\fR \fBadd \fR?\fIpath\fR...? . The paths are added at the head to the list of module paths, in order of appearance. This means that the last argument ends up as the new @@ -46,7 +46,7 @@ reverse order of addition. In other words, the paths added last are looked at first. .RE .TP -\fB::tcl::tm::path\fR \fBremove\fR \fIpath\fR... +\fB::tcl::tm::path\fR \fBremove \fR?\fIpath\fR...? . Removes the paths from the list of module paths. The command silently ignores all paths which are not on the list. |