On Mon, 12 Jan 2004 [EMAIL PROTECTED] wrote:
> On Monday 12 January 2004 14:30, Andras Simon wrote:
>
> > You're messing with the internals:
>
> It is why i define it in a new package. it shouldn't have conflicted.
>
CL-USER(1): (defpackage toto)
#<The TOTO package, 0/9 internal, 0/2 external>
CL-USER(2): (package-use-list (find-package :toto))
See CLHS 11.2.9 (defpackage):
+ :use
The arguments to :use set the packages that the package named by
package-name
will inherit from. If :use is not supplied, it defaults to the same
implementation-dependent value as the :use argument to make-package.
Andras