On Mon, Nov 08, 2004 at 10:59:10PM +0100, cees-bart wrote: > yes, but then i have to rename all occurrences in the code to > make-my-hash-table, because otherwise the same stack overflow pops up.
No you don't; shadow-import the MAKE-HASH-TABLE function from your MY-HASH-TABLE package into your application package. (defpackage ... (:shadowing-import-from my-hash-table make-hash-table gethash ...) ...) -- ;; Matthew Danish -- user: mrd domain: cmu.edu ;; OpenPGP public key: C24B6010 on keyring.debian.org
