Lisp HUG Maillist Archive

Warning: Using DEFPACKAGE to modify ...

What does this mean and how do I avoid this warning?

---
Warning: Using DEFPACKAGE to modify #<The PACKET package, 104/128 internal, 18/64 external>.T
---

	Thanks, Joel

--------------------------------------------------------------------------
- for hire: mac osx device driver ninja, kernel extensions and usb drivers
---------------------+------------+---------------------------------------
http://wagerlabs.com | @wagerlabs | http://www.linkedin.com/in/joelreymont
---------------------+------------+---------------------------------------


Re: Warning: Using DEFPACKAGE to modify ...

It means that you already defined the PACKET package before, and you are now trying to use defpackage to define it again.

See the HyperSpec entry for defpackage, which states that "the consequences are undefined" if the new definition differs from the already existing definition.

Pascal

On 1 Oct 2011, at 00:08, Joel Reymont wrote:

> 
> What does this mean and how do I avoid this warning?
> 
> ---
> Warning: Using DEFPACKAGE to modify #<The PACKET package, 104/128 internal, 18/64 external>.T
> ---
> 
> 	Thanks, Joel
> 
> --------------------------------------------------------------------------
> - for hire: mac osx device driver ninja, kernel extensions and usb drivers
> ---------------------+------------+---------------------------------------
> http://wagerlabs.com | @wagerlabs | http://www.linkedin.com/in/joelreymont
> ---------------------+------------+---------------------------------------
> 

--
Pascal Costanza




Re: Warning: Using DEFPACKAGE to modify ...

I repeatedly reload code using ASDF during development and get the warning.

It seems harmless but how do you avoid it?

    Thanks, Joel

-- 
--------------------------------------------------------------------------
- for hire: mac osx device driver ninja, kernel extensions and usb drivers
---------------------+------------+---------------------------------------
http://wagerlabs.com | @wagerlabs | http://www.linkedin.com/in/joelreymont
---------------------+------------+---------------------------------------


Updated at: 2020-12-10 08:37 UTC