diff options
author | vincentdarley <vincentdarley> | 2005-01-18 09:47:43 (GMT) |
---|---|---|
committer | vincentdarley <vincentdarley> | 2005-01-18 09:47:43 (GMT) |
commit | b4b236e5dbd38bbb468faa91f03b96c2852494cf (patch) | |
tree | 95cafefd82310288d55cd4cee25bfe01457d0d82 | |
parent | 6501d3815b0a912cfff10e1b6235521f2ba756ba (diff) | |
download | tcl-b4b236e5dbd38bbb468faa91f03b96c2852494cf.zip tcl-b4b236e5dbd38bbb468faa91f03b96c2852494cf.tar.gz tcl-b4b236e5dbd38bbb468faa91f03b96c2852494cf.tar.bz2 |
added documentation on not using -lazy
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | doc/pkgMkIndex.n | 5 |
2 files changed, 6 insertions, 2 deletions
@@ -3,6 +3,9 @@ * generic/tclFileName.c: fix for glob failure on Windows shares [Bug 1100542]. + * doc/pkgMkIndex.n: added documentation that 'pkg_mkIndex -lazy' is + not a good idea. [Bug 1101678] + 2005-01-14 Donal K. Fellows <donal.k.fellows@man.ac.uk> * tests/compile.test (compile-17.1): Document known issue with diff --git a/doc/pkgMkIndex.n b/doc/pkgMkIndex.n index a7291b2..6368246 100644 --- a/doc/pkgMkIndex.n +++ b/doc/pkgMkIndex.n @@ -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: pkgMkIndex.n,v 1.14 2003/02/25 23:58:09 dgp Exp $ +'\" RCS: @(#) $Id: pkgMkIndex.n,v 1.15 2005/01/18 09:47:51 vincentdarley Exp $ '\" .so man.macros .TH pkg_mkIndex n 8.3 Tcl "Tcl Built-In Commands" @@ -109,7 +109,8 @@ upon \fBpackage require\fR. This is the default. \fB\-lazy\fR The generated index will manage to delay loading the package until the use of one of the commands provided by the package, instead of loading -it immediately upon \fBpackage require\fR. +it immediately upon \fBpackage require\fR. This is not compatible with +the use of \fIauto_reset\fR, and therefore its use is discouraged. .TP 15 \fB\-load \fIpkgPat\fR The index process will pre-load any packages that exist in the |