[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: use-modules: selecting, which symbols not to load
From: |
Panicz Maciej Godek |
Subject: |
Re: use-modules: selecting, which symbols not to load |
Date: |
Sat, 29 Dec 2012 13:18:44 +0100 |
>> to be imported from a module.
>> So I'd wish to be able to load modules in the following manner:
>>
>> (use-modules ((rnrs) #:version (6) #:without (write display)))
>
> Although it is not documented, there's a way to do this:
>
> (use-modules ((rnrs) #:version (6) #:hide (write display)))
Thanks a lot, that's just what I needed!