Re: Bug report: Loading a FASL into a package which doesn't import SETQ
Robert Munyer <[email protected]> Tue, 10 Nov 2020 22:29:09 -0500
| Newsgroups | gmane.editors.j.devel |
|---|---|
| Message-ID | <[email protected]> |
I wrote:
> Backtracing within that BREAK points a finger at this line in
> COMPILE-FROM-STREAM:
>
> (let ((*package* (find-package '#:cl))
>
> If I add one semicolon:
>
> (let (;(*package* (find-package '#:cl))
>
> then all of my own tests pass, though I haven't tried the full suite.
I also get good results if I change that line to:
(let ((*package* +keyword-package+)