On 6/24/05, Zbigniew <[EMAIL PROTECTED]> wrote: > > Basically, I want to confirm I cannot restrict the visibility of > things exported from an extension, or selectively import them. This > would require me to make things much less granular (i.e. combine .scm > files together) to avoid including too much duplicate code. >
For this you would have to use the (syntax-case) module system. Alternatively you might consider some internal prefix (like "mystuff:" ot "##mystuff#"), which is the approach I usually take. cheers, felix _______________________________________________ Chicken-users mailing list [email protected] http://lists.nongnu.org/mailman/listinfo/chicken-users
