Re: ideal way to load modules / set up evaluation environments at runtime.

Roderic Morris <[email protected]> Wed, 24 Oct 2012 23:34:56 -0400
Newsgroups gmane.lisp.scheme.scheme48
Message-ID <[email protected]>
On Wednesday, October 24, 2012 at 11:55 AM, Michael Sperber wrote:
> I'm a bit confused: The "default" config package is indeed something
> associated with the user session: There's no concept of "canonical
> config package" outside of that. What you can always do is construct or
> pass around a config package explicitly. Could you elaborate on what
> you're trying to do?
> 
> 
> 

I basically just want to do what I stated in my first email, from a function given as an argument to ,build. There is no user context when those functions eventually run, so the functions I need in that library fail.

You're right though, I can just keep a reference to the config-package I have in the command processor as I'm building the image. I'm going to do essentially the same thing the functions in the module-system library do, except with the config package as a parameter. I think I have what I need now, thanks everyone!

-Roderic