diff options
author | dgp <dgp@users.sourceforge.net> | 2001-07-21 20:26:42 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-07-21 20:26:42 (GMT) |
commit | 68b1df57ffd86cff434cc88071cd25fab54b9b11 (patch) | |
tree | ace538485cf07c3f15b5ac51e7d2b19a6b2f2025 /library/package.tcl | |
parent | 524b0f2d00b99d18e37e281905c73ec37c565a66 (diff) | |
download | tcl-68b1df57ffd86cff434cc88071cd25fab54b9b11.zip tcl-68b1df57ffd86cff434cc88071cd25fab54b9b11.tar.gz tcl-68b1df57ffd86cff434cc88071cd25fab54b9b11.tar.bz2 |
* Corrected documentation and usage message of [pkg_mkIndex].
Diffstat (limited to 'library/package.tcl')
-rw-r--r-- | library/package.tcl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/package.tcl b/library/package.tcl index 9049444..4dc1859 100644 --- a/library/package.tcl +++ b/library/package.tcl @@ -3,7 +3,7 @@ # utility procs formerly in init.tcl which can be loaded on demand # for package management. # -# RCS: @(#) $Id: package.tcl,v 1.17 2001/03/14 18:25:40 dgp Exp $ +# RCS: @(#) $Id: package.tcl,v 1.18 2001/07/21 20:26:42 dgp Exp $ # # Copyright (c) 1991-1993 The Regents of the University of California. # Copyright (c) 1994-1998 Sun Microsystems, Inc. @@ -87,7 +87,7 @@ proc pkg_compareExtension { fileName {ext {}} } { proc pkg_mkIndex {args} { global errorCode errorInfo - set usage {"pkg_mkIndex ?-direct? ?-verbose? ?-load pattern? ?--? dir ?pattern ...?"}; + set usage {"pkg_mkIndex ?-direct? ?-lazy? ?-load pattern? ?-verbose? ?--? dir ?pattern ...?"}; set argCount [llength $args] if {$argCount < 1} { |