[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Problems with eval-when/shadowing-import



> #+:TEST
> (shadowing-import 'language:data)
> 
> #-:TEST
> (eval-when (compile load eval)
>   (shadowing-import 'language:data))
> 
> (eval-when (compile load eval) (describe 'data))

In the #+:TEST case, the shadowing-import is not evaluated at compile
time, so, when the next form is compiled the shadowing-import has not
taken effect.  Nothing wrong with Clisp, as far as I can see.

Pierpaolo.