summaryrefslogtreecommitdiffstats
path: root/library/package.tcl
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2003-07-11 17:25:50 (GMT)
committerdgp <dgp@users.sourceforge.net>2003-07-11 17:25:50 (GMT)
commit57210182c3dac9535f6af80d1aed39eb684b6850 (patch)
tree4ccf27bcf921aa8fb17aea14ba611fc899484997 /library/package.tcl
parentcccb6933e3db724a7a15fe11ef0b831948984e9d (diff)
downloadtcl-57210182c3dac9535f6af80d1aed39eb684b6850.zip
tcl-57210182c3dac9535f6af80d1aed39eb684b6850.tar.gz
tcl-57210182c3dac9535f6af80d1aed39eb684b6850.tar.bz2
* library/package.tcl: Corrected [pkg_mkIndex] bug reported on
comp.lang.tcl. The indexer was searching for newly indexed packages instead of newly provided packages.
Diffstat (limited to 'library/package.tcl')
-rw-r--r--library/package.tcl10
1 files changed, 7 insertions, 3 deletions
diff --git a/library/package.tcl b/library/package.tcl
index 96e2f00..9d1c235 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.23 2003/02/25 23:58:09 dgp Exp $
+# RCS: @(#) $Id: package.tcl,v 1.24 2003/07/11 17:25:50 dgp Exp $
#
# Copyright (c) 1991-1993 The Regents of the University of California.
# Copyright (c) 1994-1998 Sun Microsystems, Inc.
@@ -272,7 +272,9 @@ proc pkg_mkIndex {args} {
set ::tcl::namespaces($::tcl::x) 1
}
foreach ::tcl::x [package names] {
- set ::tcl::packages($::tcl::x) 1
+ if {[string compare [package provide $::tcl::x] ""]} {
+ set ::tcl::packages($::tcl::x) 1
+ }
}
set ::tcl::origCmds [info commands]
@@ -366,7 +368,9 @@ proc pkg_mkIndex {args} {
set cmds [lsort [$c eval array names ::tcl::newCmds]]
set pkgs [$c eval set ::tcl::newPkgs]
if {$doVerbose} {
- tclLog "commands provided were $cmds"
+ if { !$::tcl::direct } {
+ tclLog "commands provided were $cmds"
+ }
tclLog "packages provided were $pkgs"
}
if {[llength $pkgs] > 1} {