diff options
author | dgp <dgp@users.sourceforge.net> | 2001-08-06 19:13:29 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2001-08-06 19:13:29 (GMT) |
commit | a9d8cafeb160316d137181d239ab61b01e679abe (patch) | |
tree | a21d7fe366552ac56a35c933167c2682ae9e590e | |
parent | 8e79e931d21c8ba6841e2160abcd6323529d8387 (diff) | |
download | tcl-a9d8cafeb160316d137181d239ab61b01e679abe.zip tcl-a9d8cafeb160316d137181d239ab61b01e679abe.tar.gz tcl-a9d8cafeb160316d137181d239ab61b01e679abe.tar.bz2 |
* [package forget] now forgets all of the
package arguments it receives, not stopping when a package is
not found. [Bug 415273]
-rw-r--r-- | ChangeLog | 8 | ||||
-rw-r--r-- | generic/tclPkg.c | 4 | ||||
-rw-r--r-- | tests/pkg.test | 10 |
3 files changed, 18 insertions, 4 deletions
@@ -1,5 +1,11 @@ -2001-08-02 Mo DeJong <mdejong@redhat.com> +2001-08-06 Don Porter <dgp@users.sourceforge.net> + + * generic/tclPkg.c: + * tests/pkg.test: [package forget] now forgets all of the + package arguments it receives, not stopping when a package is + not found. [Bug 415273] +2001-08-02 Mo DeJong <mdejong@redhat.com> * generic/tclPlatDecls.h: * win/tclWinPort.h: Revert <tchar.h> related changes made to improve diff --git a/generic/tclPkg.c b/generic/tclPkg.c index 0219a2f..9956023 100644 --- a/generic/tclPkg.c +++ b/generic/tclPkg.c @@ -9,7 +9,7 @@ * See the file "license.terms" for information on usage and redistribution * of this file, and for a DISCLAIMER OF ALL WARRANTIES. * - * RCS: @(#) $Id: tclPkg.c,v 1.6 2001/04/04 16:07:21 kennykb Exp $ + * RCS: @(#) $Id: tclPkg.c,v 1.7 2001/08/06 19:13:29 dgp Exp $ */ #include "tclInt.h" @@ -505,7 +505,7 @@ Tcl_PackageObjCmd(dummy, interp, objc, objv) keyString = Tcl_GetString(objv[i]); hPtr = Tcl_FindHashEntry(&iPtr->packageTable, keyString); if (hPtr == NULL) { - return TCL_OK; + continue; } pkgPtr = (Package *) Tcl_GetHashValue(hPtr); Tcl_DeleteHashEntry(hPtr); diff --git a/tests/pkg.test b/tests/pkg.test index 9618ed8..9dd0784 100644 --- a/tests/pkg.test +++ b/tests/pkg.test @@ -10,7 +10,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: pkg.test,v 1.8 2000/04/10 17:19:03 ericm Exp $ +# RCS: @(#) $Id: pkg.test,v 1.9 2001/08/06 19:13:29 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -301,6 +301,14 @@ test pkg-3.5 {Tcl_PackageCmd procedure, "forget" option} { package forget a c lappend result [lsort [package names]] } {{a b c} b} +test pkg-3.5.1 {Tcl_PackageCmd procedure, "forget" option} { + # Test for Bug 415273 + package ifneeded a 1 "I should have been forgotten" + package forget no-such-package a + set x [package ifneeded a 1] + package forget a + set x +} {} test pkg-3.6 {Tcl_PackageCmd procedure, "ifneeded" option} { list [catch {package ifneeded a} msg] $msg } {1 {wrong # args: should be "package ifneeded package version ?script?"}} |