Re: replacement for in-package with :use keyword



Martin Rubey <axiomize@xxxxxxxx> writes:

The first problem I hit is that aldor produces in-package calls like

(in-package "FOAM-USER" :use '("FOAM" "LISP"))

and it seems that they are not ANSI.

The modern equivalent is:

(defpackage "FOAM-USER" (:use "FOAM" "CL"))
(in-package "FOAM-USER")

http://www.lispworks.com/documentation/HyperSpec/Issues/iss195_w.htm has
some details about why it changed.

Zach
.