Re: Declaring *print-case* special in SBCL seems broken
- From: rpw3@xxxxxxxx (Rob Warnock)
- Date: Tue, 30 May 2006 22:53:56 -0500
Takehiko Abe <keke@xxxxxxx> wrote:
+---------------
| In CMUCL, there's unlock-all-packages . I call it in init.lisp
| so that I won't get package related errors like that.
+---------------
Also in CMUCL there's the WITHOUT-PACKAGE-LOCKS macro that you
can wrap around any loading you want to do:
> (macroexpand
'(without-package-locks
(load "this")
(load "that")))
(EVAL-WHEN (:COMPILE-TOPLEVEL :LOAD-TOPLEVEL :EXECUTE)
(LET ((LISP::*ENABLE-PACKAGE-LOCKED-ERRORS* NIL))
(LOAD "this")
(LOAD "that")))
T
>
One might look for something that in SBCL, too.
-Rob
-----
Rob Warnock <rpw3@xxxxxxxx>
627 26th Avenue <URL:http://rpw3.org/>
San Mateo, CA 94403 (650)572-2607
.
- References:
- Declaring *print-case* special in SBCL seems broken
- From: Ron Garret
- Re: Declaring *print-case* special in SBCL seems broken
- From: Takehiko Abe
- Declaring *print-case* special in SBCL seems broken
- Prev by Date: Re: Just can't hear enough about Cells?
- Next by Date: Re: Just can't hear enough about Cells?
- Previous by thread: Re: Declaring *print-case* special in SBCL seems broken
- Next by thread: s-expression data language
- Index(es):